
javax.slee.profile.UnrecognizedQueryNameException Maven / Gradle / Ivy
The newest version!
package javax.slee.profile;
/**
* This exception is thrown by the ProfileFacility
and
* ProfileProvisioningMBean
when passed the name of a static query
* that has not been defined.
* @since SLEE 1.1
*/
public class UnrecognizedQueryNameException extends Exception {
/**
* Create an UnrecognizedQueryNameException
with no detail message.
*/
public UnrecognizedQueryNameException() {}
/**
* Create an UnrecognizedQueryNameException
with a detail message.
* @param message the detail message.
*/
public UnrecognizedQueryNameException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy