Package com._1c.g5.v8.dt.lifecycle
Class LifecycleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com._1c.g5.v8.dt.lifecycle.LifecycleException
-
- All Implemented Interfaces:
Serializable
public class LifecycleException extends RuntimeException
Exception which shows problem in services lifecycle management. Can be used to initiate the restoration sequence after the error is occured.- Since:
- 1.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LifecycleException(String message)
Constructor.LifecycleException(String message, Throwable cause)
Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LifecycleException
public LifecycleException(String message)
Constructor.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
LifecycleException
public LifecycleException(String message, Throwable cause)
Constructor.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause of the problem, can benull
.
-
-