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

nablarch.fw.handler.AlreadyProcessRunningException Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package nablarch.fw.handler;

/**
 * 既にプロセスが実行中であることを示す例外クラス。
 *
 * @author Hisaaki Shioiri
 */
public class AlreadyProcessRunningException extends Exception {

    /**
     * 例外を生成する。
     */
    public AlreadyProcessRunningException() {
    }

    /**
     * 例外を生成する。
     *
     * @param message 例外メッセージ
     */
    public AlreadyProcessRunningException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy