
javax.slee.profile.ProfileTableAlreadyExistsException Maven / Gradle / Ivy
The newest version!
package javax.slee.profile;
/**
* This exception is thrown by the {@link javax.slee.management.ProfileProvisioningMBean#createProfileTable
* ProfileProvisioningMBean.createProfileTable} method when passed the name of a
* profile table that is already in use.
*/
public class ProfileTableAlreadyExistsException extends Exception {
/**
* Create an ProfileTableAlreadyExistsException
with no detail message.
*/
public ProfileTableAlreadyExistsException() {}
/**
* Create an ProfileTableAlreadyExistsException
with a detail message.
* @param message the detail message.
*/
public ProfileTableAlreadyExistsException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy