mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-13 08:15:20 +07:00
Allow instantiation of EndOfInput outside of com.riiablo.io
This commit is contained in:
parent
474ea5b44b
commit
7525e288ea
@ -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!";
|
||||
|
||||
EndOfInput() {
|
||||
public EndOfInput() {
|
||||
super(DEFAULT_MESSAGE);
|
||||
}
|
||||
|
||||
EndOfInput(Throwable cause) {
|
||||
public EndOfInput(Throwable cause) {
|
||||
super(DEFAULT_MESSAGE, cause);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user