1 package liquibase.exception; 2 3 public class ServiceNotFoundException extends RuntimeException { 4 5 public ServiceNotFoundException(String message) { 6 super(message); 7 } 8 9 public ServiceNotFoundException(String message, Throwable cause) { 10 super(message, cause); 11 } 12 13 public ServiceNotFoundException(Throwable cause) { 14 super(cause); 15 } 16 }