gcube-cms-suite/cms-plugin-framework/src/main/java/org/gcube/application/cms/implementations/faults/ProjectLockedException.java

23 lines
633 B
Java
Raw Normal View History

2022-10-27 16:03:38 +02:00
package org.gcube.application.cms.implementations.faults;
2022-03-18 18:35:43 +01:00
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);
}
}