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

com.oneandone.snmpman.exception.InitializationException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.oneandone.snmpman.exception;

/** Exception type defines the failed initialization of the application. */
public class InitializationException extends RuntimeException {

    /** The version number of this class. */
    private static final long serialVersionUID = 1L;

    /**
     * Constructs a new exception.
     *
     * @param message the detail message
     */
    public InitializationException(final String message) {
        super(message);
    }

    /**
     * Constructs a new exception.
     *
     * @param message the detail message
     * @param cause the exception cause
     */
    public InitializationException(final String message, final Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy