Package com.day.cq.replication
Class ReplicationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.day.cq.replication.ReplicationException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AccessDeniedException
,AgentNotFoundException
,PathNotFoundException
,TransportException
,UnrecoverableReplicationException
public class ReplicationException extends java.lang.Exception
Main exception thrown by classes in this package. May either contain an error message or another exception wrapped inside this exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReplicationException(java.lang.Exception e)
Creates aReplicationException
given a root exceptionReplicationException(java.lang.String s)
Creates aReplicationException
given a message describing the failure causeReplicationException(java.lang.String s, java.lang.Exception e)
Creates aReplicationException
given a message describing the failure cause and a root exception
-
-
-
Constructor Detail
-
ReplicationException
public ReplicationException(java.lang.String s)
Creates aReplicationException
given a message describing the failure cause- Parameters:
s
- description
-
ReplicationException
public ReplicationException(java.lang.String s, java.lang.Exception e)
Creates aReplicationException
given a message describing the failure cause and a root exception- Parameters:
s
- descriptione
- root failure cause
-
ReplicationException
public ReplicationException(java.lang.Exception e)
Creates aReplicationException
given a root exception- Parameters:
e
- root failure cause
-
-