PlayerNotFoundException.java 235 B

1234567891011
  1. package me.km.exception;
  2. import me.hammerle.exceptions.IllegalStringException;
  3. public class PlayerNotFoundException extends IllegalStringException
  4. {
  5. public PlayerNotFoundException(String s)
  6. {
  7. super(s);
  8. }
  9. }