cdc.applic.expressions.ImplementationException 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;
public class ImplementationException extends ApplicException {
private static final long serialVersionUID = 1L;
public ImplementationException(String message,
Throwable cause) {
super(message, cause);
}
public ImplementationException(String message) {
this(message, null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy