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

liquibase.exception.ServiceNotFoundException Maven / Gradle / Ivy

package liquibase.exception;

public class ServiceNotFoundException extends RuntimeException {

    public ServiceNotFoundException(String message) {
        super(message);
    }

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

    public ServiceNotFoundException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy