
org.sourcelab.github.client.exception.RequestParsingException Maven / Gradle / Ivy
The newest version!
package org.sourcelab.github.client.exception;
/**
* Thrown if the library is unable to serialize a request body.
* 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 RequestParsingException extends GithubException {
/**
* Constructor.
* @param message Error message.
*/
public RequestParsingException(final String message) {
super(message);
}
/**
* Constructor.
* @param message Error message.
* @param cause Underlying exception.
*/
public RequestParsingException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy