This commit is contained in:
Collin Smith 2021-09-16 12:28:15 -07:00
parent 7525e288ea
commit 7b7c442525

View File

@ -3,11 +3,11 @@ package com.riiablo.io;
public class EndOfInput extends RuntimeException {
private static final String DEFAULT_MESSAGE = "The end of the input has been reached!";
public EndOfInput() {
EndOfInput() {
super(DEFAULT_MESSAGE);
}
public EndOfInput(Throwable cause) {
EndOfInput(Throwable cause) {
super(DEFAULT_MESSAGE, cause);
}
}