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

bt.BtException Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt;

/**
 * Generic Bt exception
 *
 * @since 1.0
 */
public class BtException extends RuntimeException {

    /**
     * @since 1.0
     */
    public BtException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * @since 1.0
     */
    public BtException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy