
org.sourcelab.github.client.exception.ResponseParsingException Maven / Gradle / Ivy
The newest version!
package org.sourcelab.github.client.exception;
/**
* 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.
*/
public class ResponseParsingException extends GithubException {
/**
* Constructor.
* @param message Error message.
*/
public ResponseParsingException(final String message) {
super(message);
}
/**
* Constructor.
* @param message Error message.
* @param cause Underlying exception.
*/
public ResponseParsingException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy