1 2 3 4 5 6 7 8
public class InvalidPatternException extends RuntimeException { private static final long serialVersionUID = 1L; public InvalidPatternException() { super("Invalid pattern given. Length must be equal to 4."); } }