![JAR search and dependency download from the Maven repository](/logo.png)
com.ozacc.mail.xml.XMLBuildException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ozacc-mail Show documentation
Show all versions of ozacc-mail Show documentation
Library to send and receive emails.
The newest version!
package com.ozacc.mail.xml;
/**
* XMLドキュメントの生成に失敗した時にスローされる例外。
*
* @since 1.0
* @author Tomohiro Otsuka
* @version $Id: XMLBuildException.java,v 1.2 2004/09/13 07:08:11 otsuka Exp $
*/
public class XMLBuildException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* @param message
*/
public XMLBuildException(String message) {
super(message);
}
/**
* @param message
* @param cause
*/
public XMLBuildException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy