com.sap.cds.repackaged.audit.api.exception.AuditLogException Maven / Gradle / Ivy
package com.sap.cds.repackaged.audit.api.exception;
/**
* Root exception thrown by the audit log API.
*
*/
public class AuditLogException extends Exception {
private static final long serialVersionUID = 1L;
public AuditLogException() {
}
public AuditLogException(String message) {
super(message);
}
public AuditLogException(Throwable cause) {
super(cause);
}
public AuditLogException(String message, Throwable cause) {
super(message, cause);
}
public AuditLogException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy