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

trip.spi.ServiceProviderException Maven / Gradle / Ivy

package trip.spi;

public class ServiceProviderException extends RuntimeException {

	private static final long serialVersionUID = -4728985132376711824L;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy