gcube-sdi-suite/sdi-interface/src/main/java/org/gcube/spatial/data/sdi/model/faults/InternalException.java

40 lines
856 B
Java

package org.gcube.spatial.data.sdi.model.faults;
public class InternalException extends Exception {
/**
*
*/
private static final long serialVersionUID = 7957607092593029526L;
public InternalException() {
super();
// TODO Auto-generated constructor stub
}
public InternalException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public InternalException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public InternalException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public InternalException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}