org.tkit.jee.base.exception.ServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tkit-quarkus-portal-mvc Show documentation
Show all versions of tkit-quarkus-portal-mvc Show documentation
1000kit mvc library for the Quarkus framework
package org.tkit.jee.base.exception;
public class ServiceException extends LocalizableException {
private static final long serialVersionUID = 1197255302779772224L;
public ServiceException(Enum> errorCode) {
super(errorCode);
}
public ServiceException(Enum> errorCode, String message) {
super(errorCode, message, (Throwable) null);
}
public ServiceException(Enum> errorCode, String message, Throwable cause) {
super(errorCode, message, cause);
}
public ServiceException(Enum> messageKey, Throwable cause) {
super(messageKey, cause);
}
public ServiceException(Enum> messageKey, Throwable cause, Object... params) {
super(messageKey, cause, params);
}
}