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

liquibase.exception.ServiceNotFoundException Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.exception;

public class ServiceNotFoundException extends RuntimeException {
    
    private static final long serialVersionUID = 4832384741282505341L;
    
    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