gcube-cms-suite/geoportal-common/src/main/java/org/gcube/application/geoportal/common/faults/PathException.java

24 lines
577 B
Java

package org.gcube.application.geoportal.common.faults;
public class PathException extends Exception{
public PathException() {
}
public PathException(String message) {
super(message);
}
public PathException(String message, Throwable cause) {
super(message, cause);
}
public PathException(Throwable cause) {
super(cause);
}
public PathException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}