Package com.day.cq.replication
Class AgentNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.day.cq.replication.ReplicationException
-
- com.day.cq.replication.AgentNotFoundException
-
- All Implemented Interfaces:
Serializable
public class AgentNotFoundException extends ReplicationException
This exception is thrown when a specified agent is not found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AgentNotFoundException(Exception e)Creates aAgentNotFoundExceptiongiven a root exceptionAgentNotFoundException(String s)Creates aAgentNotFoundExceptiongiven a message describing the failure causeAgentNotFoundException(String s, Exception e)Creates aAgentNotFoundExceptiongiven a message describing the failure cause and a root exception
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AgentNotFoundException
public AgentNotFoundException(String s)
Creates aAgentNotFoundExceptiongiven a message describing the failure cause- Parameters:
s- description
-
AgentNotFoundException
public AgentNotFoundException(String s, Exception e)
Creates aAgentNotFoundExceptiongiven a message describing the failure cause and a root exception- Parameters:
s- descriptione- root failure cause
-
AgentNotFoundException
public AgentNotFoundException(Exception e)
Creates aAgentNotFoundExceptiongiven a root exception- Parameters:
e- root failure cause
-
-