diff --git a/core/src/main/java/com/riiablo/io/EndOfInput.java b/core/src/main/java/com/riiablo/io/EndOfInput.java index 0a6ec557..d6073069 100644 --- a/core/src/main/java/com/riiablo/io/EndOfInput.java +++ b/core/src/main/java/com/riiablo/io/EndOfInput.java @@ -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); } }