diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 21:34:29 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-10-11 21:34:29 -0300 |
| commit | 235208946ceb2bf0f422956a3ebc0ebb88ba28b6 (patch) | |
| tree | e50faa94428972c6c23a605ffb4ec88d28f73cba /src/main/java/bjc/inflexion/nouns/InflectionException.java | |
| parent | 46cb1f6c030991d314d0ef1fafa53e53ef3e03c9 (diff) | |
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionException.java')
| -rw-r--r-- | src/main/java/bjc/inflexion/nouns/InflectionException.java | 8 |
1 files changed, 4 insertions, 4 deletions
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); |
