Class SnapshotIntegrationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.e1c.g5.v8.snapshot.SnapshotOperationException
-
- com.e1c.g5.v8.dt.snapshot.integration.git.SnapshotIntegrationException
-
- All Implemented Interfaces:
Serializable
public class SnapshotIntegrationException extends SnapshotOperationException
Snapshot operation exception, which concerns integration services.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SnapshotIntegrationException(String message)
Constructs a new exception with the specified message.SnapshotIntegrationException(String message, Throwable cause)
Constructs a new exception with the specified cause and message.SnapshotIntegrationException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of(cause==null ? null : cause.toString())
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SnapshotIntegrationException
public SnapshotIntegrationException(String message)
Constructs a new exception with the specified message.- Parameters:
message
- the message, may benull
-
SnapshotIntegrationException
public SnapshotIntegrationException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of(cause==null ? null : cause.toString())
.- Parameters:
cause
- the cause, may benull
-
-