diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-04-13 18:40:41 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-04-13 18:40:41 -0400 |
| commit | d4ca769e542b2489b1e23cfcbdc3a0b7275b87cd (patch) | |
| tree | 1653a7399f97fb0c63ce62e3f60fd830d5c37f70 /base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java | |
| parent | 2ac2e31a56ae59ee582e43a90c3495f86dd9ee7a (diff) | |
Cleanup pass
Cleanup pass to uniformize things
Diffstat (limited to 'base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java')
| -rw-r--r-- | base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java b/base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java index ca83b30..b305542 100644 --- a/base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java +++ b/base/src/main/java/bjc/utils/exceptions/OperandsRemaining.java @@ -3,7 +3,7 @@ package bjc.utils.exceptions; /** * Exception thrown when an operation has finished, but still has more input * that has not been processed. - * + * * @author Ben Culkin * */ @@ -16,11 +16,12 @@ public class OperandsRemaining extends RuntimeException { public OperandsRemaining() { super("Operation had input left-over"); } - + /** * Create a new OperandsRemaining exception with a specific message. - * - * @param msg The message of the exception. + * + * @param msg + * The message of the exception. */ public OperandsRemaining(String msg) { super(msg); |
