All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.test.tool.htmlcheck.InvalidHtmlException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package nablarch.test.tool.htmlcheck;

import nablarch.core.util.annotation.Published;

/**
 * HTMLファイルチェック中に何らかの例外が生じたことを示す例外.
 * 
 * @author Tomokazu Kagawa
 */
@Published(tag = "architect")
public class InvalidHtmlException extends RuntimeException {

    /**
     * @param message エラーメッセージ
     * @see Throwable#Throwable(String)
     */
    public InvalidHtmlException(String message) {
        super(message);
    }

    /**
     * @param e エラー
     * @see Throwable#Throwable(Throwable)
     */
    public InvalidHtmlException(Throwable e) {
        super(e);
    }

    /**
     * @param message メッセージ
     * @param cause エラー
     * @see Throwable#Throwable(String, Throwable)
     */
    public InvalidHtmlException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy