Class ResponseParsingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.sourcelab.buildkite.api.client.exception.BuildkiteException
org.sourcelab.buildkite.api.client.exception.ResponseParsingException
- All Implemented Interfaces:
Serializable
Thrown if the API responds with content that is unable to be parsed.
This likely results from a bug in the Buildkite Api Client library, with it not understanding
how to properly parse a given response.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionResponseParsingException(String message) Constructor.ResponseParsingException(String message, Throwable cause) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResponseParsingException
Constructor.- Parameters:
message- Error message.
-
ResponseParsingException
Constructor.- Parameters:
message- Error message.cause- Underlying exception.
-