You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
geoportal-service/src/main/java/org/gcube/application/geoportal/service/model/internal/faults/InvalidStateException.java

39 lines
901 B
Java

package org.gcube.application.geoportal.service.model.internal.faults;
public class InvalidStateException extends Exception {
/**
*
*/
private static final long serialVersionUID = 8926481061304048080L;
public InvalidStateException() {
super();
// TODO Auto-generated constructor stub
}
public InvalidStateException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public InvalidStateException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public InvalidStateException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public InvalidStateException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}