summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/InflectionException.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2020-09-10 17:12:59 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2020-09-10 17:12:59 -0300
commit229054f4839ad99c8c9fc757cce7edc0d2ca3cf1 (patch)
treef9de568967b82c46f6d22eda9c843529b6045b5d /src/main/java/bjc/inflexion/nouns/InflectionException.java
parentcb45132debdbce593a235323e9155b5c47906558 (diff)
parente71ef0d03e87df19900db8328cda68d38d523b0b (diff)
Merge branch 'master' of https://github.com/bculkin2442/Inflexion
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionException.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/InflectionException.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/bjc/inflexion/nouns/InflectionException.java b/src/main/java/bjc/inflexion/nouns/InflectionException.java
index 74a88b6..22b2fc4 100644
--- a/src/main/java/bjc/inflexion/nouns/InflectionException.java
+++ b/src/main/java/bjc/inflexion/nouns/InflectionException.java
@@ -27,10 +27,10 @@ public class InflectionException extends RuntimeException {
* 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);
@@ -40,7 +40,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);