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

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

There is a newer version: 0.13.3
Show newest version
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