/** * */ package org.openntf.domino.exceptions; import java.util.logging.Logger; /** * @author nfreeman * */ public class MIMEConversionException extends RuntimeException { @SuppressWarnings("unused") private static final Logger log_ = Logger.getLogger(MIMEConversionException.class.getName()); private static final long serialVersionUID = 1L; /** * @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 MIMEConversionException(final String message, final Throwable cause) { super(message, cause); } }