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

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

There is a newer version: 3.2.0
Show newest version
package com.sap.cds.repackaged.audit.api.exception;


/**
 * Exception thrown when the audit log server is not available.
 *
 */
public class AuditLogNotAvailableException extends AuditLogException {

	private static final long serialVersionUID = 1L;

	public AuditLogNotAvailableException() {
	}

	public AuditLogNotAvailableException(String message) {
		super(message);
	}

	public AuditLogNotAvailableException(Throwable cause) {
		super(cause);
	}

	public AuditLogNotAvailableException(String message, Throwable cause) {
		super(message, cause);
	}

	public AuditLogNotAvailableException(String message, Throwable cause, boolean enableSuppression,
			boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy