com.airlenet.repo.LockedableException Maven / Gradle / Ivy
The newest version!
package com.airlenet.repo;
/**
*
* @author airlenet
* @version 2017-10-10
*/
public class LockedableException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public LockedableException() {
this("cannot delete the locked entity.");
}
public LockedableException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public LockedableException(String message, Throwable cause) {
super(message, cause);
}
public LockedableException(String message) {
super(message);
}
public LockedableException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy