mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-27 16:10:36 +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 {
|
public class EndOfInput extends RuntimeException {
|
||||||
private static final String DEFAULT_MESSAGE = "The end of the input has been reached!";
|
private static final String DEFAULT_MESSAGE = "The end of the input has been reached!";
|
||||||
|
|
||||||
public EndOfInput() {
|
EndOfInput() {
|
||||||
super(DEFAULT_MESSAGE);
|
super(DEFAULT_MESSAGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public EndOfInput(Throwable cause) {
|
EndOfInput(Throwable cause) {
|
||||||
super(DEFAULT_MESSAGE, cause);
|
super(DEFAULT_MESSAGE, cause);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user