org.xbib.helianthus.common.ProtocolViolationException Maven / Gradle / Ivy
package org.xbib.helianthus.common;
public class ProtocolViolationException extends RuntimeException {
private static final long serialVersionUID = 4674394621849790490L;
public ProtocolViolationException() {
}
public ProtocolViolationException(String message) {
super(message);
}
public ProtocolViolationException(String message, Throwable cause) {
super(message, cause);
}
public ProtocolViolationException(Throwable cause) {
super(cause);
}
protected ProtocolViolationException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy