From 7b7c442525e565eeffd363a931192fe830ec5567 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Thu, 16 Sep 2021 12:28:15 -0700 Subject: [PATCH] Revert 7525e288eacea7a8385e968d33bd4df3aadb51e3 --- core/src/main/java/com/riiablo/io/EndOfInput.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }