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

cdc.applic.expressions.ApplicException Maven / Gradle / Ivy

There is a newer version: 0.13.2
Show newest version
package cdc.applic.expressions;

/**
 * Base class of am exception raised in this library.
 *
 * @author Damien Carbonne
 */
public class ApplicException extends RuntimeException {
    private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy