javax.slee.profile
Class ProfileVerificationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javax.slee.profile.ProfileVerificationException
All Implemented Interfaces:
java.io.Serializable

public class ProfileVerificationException
extends java.lang.Exception

This exception can be thrown by the ProfileManagement.profileVerify() callback method if the state of the profile's CMP fields is not deemed to be a valid configuration for SBBs.

See Also:
Serialized Form

Constructor Summary
ProfileVerificationException(java.lang.String message)
          Create a ProfileVerificationException with the a detail message.
ProfileVerificationException(java.lang.String message, java.lang.Throwable cause)
          Create a ProfileVerificationException with a detail message and cause.
 
Method Summary
 java.lang.Throwable getCause()
          Get the cause (if any) for this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProfileVerificationException

public ProfileVerificationException(java.lang.String message)
Create a ProfileVerificationException with the a detail message.
Parameters:
message - the detail message.

ProfileVerificationException

public ProfileVerificationException(java.lang.String message,
                                    java.lang.Throwable cause)
Create a ProfileVerificationException with a detail message and cause.
Parameters:
message - the detail message.
cause - the reason this exception was thrown.
Method Detail

getCause

public java.lang.Throwable getCause()
Get the cause (if any) for this exception.
Returns:
the cause.