Class UraClientException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
de.stklcode.pubtrans.ura.exception.UraClientException
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
UraClientConfigurationException
public class UraClientException
extends java.io.IOException
Custom exception class indicating an error with the URA API communication.
- Since:
- 2.0
- Author:
- Stefan Kalscheuer
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description UraClientException(java.lang.String message, java.lang.Throwable cause)Default constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
UraClientException
public UraClientException(java.lang.String message, java.lang.Throwable cause)Default constructor.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)cause- The cause (which is saved for later retrieval by theThrowable.getCause()method).
-