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

prompto.error.InternalError Maven / Gradle / Ivy

The newest version!
package prompto.error;

public class InternalError extends PromptoError {

	private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy