com.oneandone.snmpman.exception.InitializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snmpman Show documentation
Show all versions of snmpman Show documentation
SNMP agent simulator library
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