Class LifeCycleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.priint.pubserver.plugin.exception.LifeCycleException
-
- All Implemented Interfaces:
java.io.Serializable
public class LifeCycleException extends java.lang.RuntimeExceptionThrown to indicate that startup exception for plug-ins.Signals that a plug-in could not be deployed the correct way or went into an abnormal status during runtime.
May also be thrown in shutdown.
- Since:
- 4.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LifeCycleException(java.lang.String errorMessage)LifeCycleException(java.lang.String errorMessage, java.lang.Throwable cause)
-
-
-
Constructor Detail
-
LifeCycleException
public LifeCycleException(java.lang.String errorMessage)
- Parameters:
errorMessage- short textual error message, possibly containing some identifying object data
-
LifeCycleException
public LifeCycleException(java.lang.String errorMessage, java.lang.Throwable cause)- Parameters:
errorMessage- short textual error message, possibly containing some identifying object datacause- (optional) original exception leading to this one ornull
-
-