com.jp.protection.pub
Class LicenseOutdatedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.jp.protection.pub.LicenseOutdatedException
All Implemented Interfaces:
java.io.Serializable

public class LicenseOutdatedException
extends java.lang.RuntimeException

Internal utility exception that can be thrown during the license reading and validation to indicate that license is outdated (e.g. as result of getting new license during the execution of one of the resolver's methods) and need to be re-read and re-checked. Note: no code outside of license reader and license host should deal with this exception.

See Also:
Serialized Form

Constructor Summary
LicenseOutdatedException()
          Constructs a new exception with null as its detail message.
LicenseOutdatedException(java.lang.String message)
          Constructs a new exception with the specified detail message.
LicenseOutdatedException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
LicenseOutdatedException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LicenseOutdatedException

public LicenseOutdatedException()
Constructs a new exception with null as its detail message.


LicenseOutdatedException

public LicenseOutdatedException(java.lang.String message)
Constructs a new exception with the specified detail message.

Parameters:
message - the detail message

LicenseOutdatedException

public LicenseOutdatedException(java.lang.String message,
                                java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message
cause - the cause (a null value is permitted, and indicates that the cause is nonexistent or unknown.)

LicenseOutdatedException

public LicenseOutdatedException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.

Parameters:
cause - the cause. (a null value is permitted, and indicates that the cause is nonexistent or unknown.)