package org.openntf.domino.exceptions; public class Domino32KLimitException extends Exception { private static final long serialVersionUID = 1L; public Domino32KLimitException() { super(); } /** * @param message * the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method. */ public Domino32KLimitException(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 Domino32KLimitException(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 Domino32KLimitException(final String message, final Throwable cause) { super(message, cause); } }