LogicGates/eu.heili/InputOutOfBoundsException.java

6 lines
154 B
Java
Raw Normal View History

public class InputOutOfBoundsException extends RuntimeException {
2020-04-13 09:23:57 +00:00
public InputOutOfBoundsException() {
super("Input out of bounds!");
}
}