prompto.error.PromptoError Maven / Gradle / Ivy
The newest version!
package prompto.error;
public class PromptoError extends RuntimeException {
private static final long serialVersionUID = 1L;
protected PromptoError() {
}
protected PromptoError(String message) {
super(message);
}
protected PromptoError(Throwable cause) {
super(cause);
}
public PromptoError(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy