package org.openntf.domino.exceptions; public class PermissionDeniedException extends SecurityException { private static final long serialVersionUID = 1L; public PermissionDeniedException() { } /** * @param message * the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method. */ public PermissionDeniedException(final String message) { super(message); } /** * @param cause * the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and * indicates that the cause is nonexistent or unknown.) */ public PermissionDeniedException(final Throwable cause) { super(cause); } /** * @param message * the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method. * @param cause * the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and * indicates that the cause is nonexistent or unknown.) */ public PermissionDeniedException(final String message, final Throwable cause) { super(message, cause); } }