InvalidPatternException.java 219 Bytes Edit Raw Blame History 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 5."); } }