GotoLabelNotFoundException.java 182 B

123456789
  1. package me.km.exception;
  2. public class GotoLabelNotFoundException extends IllegalStringException
  3. {
  4. public GotoLabelNotFoundException(String s)
  5. {
  6. super(s);
  7. }
  8. }