diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-04-11 21:57:48 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-04-11 21:57:48 -0400 |
| commit | 6c307cc6dfb8088281c1432814068f472d0a03d4 (patch) | |
| tree | f1ec11d02d669e44ba800f48345f0c645a097329 /src/main/java/bjc/inflexion/nouns/InflectionException.java | |
| parent | c285b4480963e0ee8b8d32312c6a4c7c94dc2840 (diff) | |
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionException.java')
| -rw-r--r-- | src/main/java/bjc/inflexion/nouns/InflectionException.java | 12 |
1 files changed, 6 insertions, 6 deletions
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); } } |
