gcube-cms-suite/geoportal-service/src/main/java/org/gcube/application/geoportal/service/model/internal/faults/ProjectLockedException.java

23 lines
646 B
Java

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