From 6c307cc6dfb8088281c1432814068f472d0a03d4 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 11 Apr 2017 21:57:48 -0400 Subject: Cleanup --- src/main/java/bjc/inflexion/nouns/InflectionException.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/main/java/bjc/inflexion/nouns/InflectionException.java') diff --git a/src/main/java/bjc/inflexion/nouns/InflectionException.java b/src/main/java/bjc/inflexion/nouns/InflectionException.java index a2d92bc..59ec61b 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionException.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionException.java @@ -17,7 +17,7 @@ package bjc.inflexion.nouns; /** * Exception thrown when something goes wrong with inflection. - * + * * @author EVE * */ @@ -26,24 +26,24 @@ public class InflectionException extends RuntimeException { /** * Create a new inflection exception with the given message and cause. - * + * * @param message * The message of the exception. - * + * * @param cause * The cause of the exception. */ - public InflectionException(String message, Throwable cause) { + public InflectionException(final String message, final Throwable cause) { super(message, cause); } /** * Create a new inflection exception with the given message. - * + * * @param message * The message of the exception. */ - public InflectionException(String message) { + public InflectionException(final String message) { super(message); } } -- cgit v1.2.3