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

ru.curs.celesta.CelestaException Maven / Gradle / Ivy

The newest version!
package ru.curs.celesta;

/**
 * Critical error that leads to stopping of Celesta.
 */
public class CelestaException extends RuntimeException {

    private static final long serialVersionUID = 1L;

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

    public CelestaException(String message, Object... args) {
        super(String.format(message, args));
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy