cdc.applic.expressions.ApplicException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
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);
}
}