Package com.day.cq.replication
Class PathNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.day.cq.replication.ReplicationException
-
- com.day.cq.replication.PathNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class PathNotFoundException extends ReplicationException
This exception is thrown when the path to replicate is not found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PathNotFoundException(java.lang.Exception e)
Creates aPathNotFoundException
given a root exceptionPathNotFoundException(java.lang.String s)
Creates aPathNotFoundException
given a message describing the failure causePathNotFoundException(java.lang.String s, java.lang.Exception e)
Creates aPathNotFoundException
given a message describing the failure cause and a root exception
-
-
-
Constructor Detail
-
PathNotFoundException
public PathNotFoundException(java.lang.String s)
Creates aPathNotFoundException
given a message describing the failure cause- Parameters:
s
- description
-
PathNotFoundException
public PathNotFoundException(java.lang.String s, java.lang.Exception e)
Creates aPathNotFoundException
given a message describing the failure cause and a root exception- Parameters:
s
- descriptione
- root failure cause
-
PathNotFoundException
public PathNotFoundException(java.lang.Exception e)
Creates aPathNotFoundException
given a root exception- Parameters:
e
- root failure cause
-
-