Class SCBClientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.github.dannil.scbjavaclient.exception.SCBClientException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SCBClientParsingException
,SCBClientResponseTooLargeException
public class SCBClientException extends RuntimeException
Base exception for all client exceptions.
- Since:
- 0.0.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SCBClientException()
Default constructor.SCBClientException(String message)
Overloaded constructor.SCBClientException(String message, Throwable cause)
Overloaded constructor.SCBClientException(Throwable cause)
Overloaded constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SCBClientException
public SCBClientException()
Default constructor.
-
SCBClientException
public SCBClientException(String message)
Overloaded constructor.
- Parameters:
message
- the message
-
SCBClientException
public SCBClientException(String message, Throwable cause)
Overloaded constructor.
- Parameters:
message
- the messagecause
- the cause
-
SCBClientException
public SCBClientException(Throwable cause)
Overloaded constructor.
- Parameters:
cause
- the cause
-
-