Blame view

VRGNYMusicLights/Sources/InvalidPatternException.java 219 Bytes
742429d1   pfrison   VRGNYMusicLight b...
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.");
  	}
  }