summaryrefslogtreecommitdiff
path: root/dicore3/command/src/main/java/io/dico/dicore/command/registration/reflect/CommandParseException.java
blob: 478c70cdd76eb8da7f26304017875b9a57d39d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package io.dico.dicore.command.registration.reflect;

/**
 * Thrown if an error occurs while 'parsing' a reflection command method
 * Other errors can be thrown too in there that may not be directly relevant to a parsing error.
 */
public class CommandParseException extends Exception {

    public CommandParseException() {
    }

    public CommandParseException(String message) {
        super(message);
    }

    public CommandParseException(String message, Throwable cause) {
        super(message, cause);
    }

    public CommandParseException(Throwable cause) {
        super(cause);
    }

    public CommandParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}