package org.alfresco.repo.audit.model; import org.alfresco.error.AlfrescoRuntimeException; /** * Exceptions from the audit model package. * * @author Andy Hind */ public class AuditModelException extends AlfrescoRuntimeException { /** * Comment for serialVersionUID */ private static final long serialVersionUID = -2527034441058184109L; public AuditModelException(String msgId) { super(msgId); } public AuditModelException(String msgId, Object[] msgParams) { super(msgId, msgParams); } public AuditModelException(String msgId, Throwable cause) { super(msgId, cause); } public AuditModelException(String msgId, Object[] msgParams, Throwable cause) { super(msgId, msgParams, cause); } }