mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-06 16:27:34 +07:00
Allow instantiation of EndOfInput outside of com.riiablo.io
This commit is contained in:
@ -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!";
|
||||||
|
|
||||||
EndOfInput() {
|
public EndOfInput() {
|
||||||
super(DEFAULT_MESSAGE);
|
super(DEFAULT_MESSAGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
EndOfInput(Throwable cause) {
|
public EndOfInput(Throwable cause) {
|
||||||
super(DEFAULT_MESSAGE, cause);
|
super(DEFAULT_MESSAGE, cause);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user