mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-26 23:50:23 +07:00
Revert 7525e288ea
This commit is contained in:
parent
7525e288ea
commit
7b7c442525
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user