![JAR search and dependency download from the Maven repository](/logo.png)
org.ccsds.moims.mo.mal.ShutdownException Maven / Gradle / Ivy
package org.ccsds.moims.mo.mal;
/**
* The ShutdownException exception. The component is being shutdown.
*/
public final class ShutdownException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new ShutdownException exception.
*
*/
public ShutdownException() {
super(MALHelper.SHUTDOWN_ERROR_NUMBER, "");
}
/**
* Constructs a new ShutdownException exception.
*
* @param message The message of the exception.
*/
public ShutdownException(String message) {
super(MALHelper.SHUTDOWN_ERROR_NUMBER, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy