From 235208946ceb2bf0f422956a3ebc0ebb88ba28b6 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 21:34:29 -0300 Subject: Cleanup --- src/main/java/bjc/inflexion/nouns/InflectionException.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 59ec61b..56715ff 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionException.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionException.java @@ -19,19 +19,19 @@ package bjc.inflexion.nouns; * Exception thrown when something goes wrong with inflection. * * @author EVE - * */ public class InflectionException extends RuntimeException { + /* Version ID for exception. */ private static final long serialVersionUID = 5680541587449153748L; /** * Create a new inflection exception with the given message and cause. * * @param message - * The message of the exception. + * The message of the exception. * * @param cause - * The cause of the exception. + * The cause of the exception. */ public InflectionException(final String message, final Throwable cause) { super(message, cause); @@ -41,7 +41,7 @@ public class InflectionException extends RuntimeException { * Create a new inflection exception with the given message. * * @param message - * The message of the exception. + * The message of the exception. */ public InflectionException(final String message) { super(message); -- cgit v1.2.3