com.scloudic.rabbitframework.web.exceptions.ResourceException Maven / Gradle / Ivy
package com.scloudic.rabbitframework.web.exceptions;
public class ResourceException extends WebException {
private static final long serialVersionUID = 1L;
public ResourceException() {
super();
}
public ResourceException(String message, Throwable cause) {
super(message, cause);
}
public ResourceException(String message) {
super(message);
}
public ResourceException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy