javax.slee.management.UnrecognizedDeployableUnitException Maven / Gradle / Ivy
The newest version!
package javax.slee.management;
/**
* This exception is thrown by management operations when passed a URL that does
* not correspond to an installed deployable unit, or when passed a
* DeployableUnitID
object that is not recognized by the SLEE, or does
* not identify a deployable unit installed in the SLEE.
*
* As of SLEE 1.1 this class extends java.lang.Exception
instead of
* {@link javax.slee.UnrecognizedComponentException}.
*/
public class UnrecognizedDeployableUnitException extends Exception {
/**
* Create an UnrecognizedDeployableUnitException
with no detail message.
*/
public UnrecognizedDeployableUnitException() {}
/**
* Create an UnrecognizedDeployableUnitException
with a detail message.
* @param message the detail message.
*/
public UnrecognizedDeployableUnitException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy