- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- cool.pandora.ldpclient.LdpClientException
-
- All Implemented Interfaces:
Serializable
public class LdpClientException extends Exception
LdpClientException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LdpClientException()Create a new LdpClientException.LdpClientException(String message)Create a new LdpClientException with a custom message.LdpClientException(String message, Throwable cause)Create a new LdpClientException with a custom message and known cause.LdpClientException(Throwable cause)Create a new LdpClientException with a known cause.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LdpClientException
public LdpClientException()
Create a new LdpClientException.
-
LdpClientException
public LdpClientException(String message)
Create a new LdpClientException with a custom message.- Parameters:
message- the message
-
LdpClientException
public LdpClientException(String message, Throwable cause)
Create a new LdpClientException with a custom message and known cause.- Parameters:
message- the messagecause- the cause
-
LdpClientException
public LdpClientException(Throwable cause)
Create a new LdpClientException with a known cause.- Parameters:
cause- the cause
-
-