summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/InflectionException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionException.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/InflectionException.java12
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);
}
}