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

it.unitn.disi.common.DISIException Maven / Gradle / Ivy

The newest version!
package it.unitn.disi.common;

/**
 * Exception for common components.
 *
 * @author 
 */
public class DISIException extends Exception {

    /**
     * Constructor.
     * Creates a new Exception by using super(msg) method.
     *
     * @param errorDescription the description of the error
     */
    public DISIException(String errorDescription) {
        super(errorDescription);
    }

    /**
     * Constructor.
     * Creates a new Exception by using super(msg, cause) method.
     *
     * @param errorDescription the description of the error
     * @param cause            the cause
     */
    public DISIException(String errorDescription, Throwable cause) {
        super(errorDescription, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy