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

io.github.qudtlib.exception.QudtException Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
package io.github.qudtlib.exception;

/**
 * Base excetpion for QUDTLib.
 *
 * @author Florian Kleedorfer
 * @version 1.0
 */
public class QudtException extends RuntimeException {
    public QudtException() {}

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy