IllegalStringLocationException.java 290 B

123456789101112
  1. package me.km.exception;
  2. import me.hammerle.code.Script;
  3. import me.hammerle.exceptions.IllegalStringException;
  4. public class IllegalStringLocationException extends IllegalStringException
  5. {
  6. public IllegalStringLocationException(Script sc, String s)
  7. {
  8. super(sc, s);
  9. }
  10. }