/** * */ package org.openntf.domino.schema.exceptions; import java.util.logging.Logger; /** * @author nfreeman * */ public class ItemLengthException extends ItemException { @SuppressWarnings("unused") private static final Logger log_ = Logger.getLogger(ItemLengthException.class.getName()); private static final long serialVersionUID = 1L; public ItemLengthException() { } /** * @param message * the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method. */ public ItemLengthException(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 ItemLengthException(final Throwable cause) { super(cause); } }