javax.slee.FactoryException Maven / Gradle / Ivy
The newest version!
package javax.slee;
/**
* This exception is thrown by activity context and activity context interface factories
* when the factory cannot perform its function due to a system-level failure.
*/
public class FactoryException extends SLEEException {
/**
* Create a FactoryException
with a detail message.
* @param message the detail message.
*/
public FactoryException(String message) {
super(message);
}
/**
* Create a FactoryException
with a detail message and cause.
* @param message the detail message.
* @param cause the reason this exception was thrown.
*/
public FactoryException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy