All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.repackaged.audit.api.exception.AuditLogException Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy