All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.krrrr38.jabot.plugin.brain.JabotBrainException Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package com.krrrr38.jabot.plugin.brain;

public class JabotBrainException extends Exception {
    public JabotBrainException() {
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy