com.cybermkd.common.entity.exception.EntityException Maven / Gradle / Ivy
package com.cybermkd.common.entity.exception;
/**
* ModelException
*/
public class EntityException extends RuntimeException {
public EntityException() {
}
public EntityException(String message) {
super(message);
}
public EntityException(Throwable cause) {
super(cause);
}
public EntityException(String message, Throwable cause) {
super(message, cause);
}
}