com.github.libgraviton.workerbase.exception.UnsuccessfulHttpResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-base Show documentation
Show all versions of worker-base Show documentation
A base library to simplify the creation of Graviton queue workers.
package com.github.libgraviton.workerbase.exception;
/**
* Exception represents an unsuccessful HTTP response.
*
* @author List of contributors
* https://github.com/libgraviton/graviton/graphs/contributors
* @see http://swisscom.ch
*/
public class UnsuccessfulHttpResponseException extends Exception {
public UnsuccessfulHttpResponseException() {
}
public UnsuccessfulHttpResponseException(String message) {
super(message);
}
public UnsuccessfulHttpResponseException(String message, Throwable cause) {
super(message, cause);
}
public UnsuccessfulHttpResponseException(Throwable cause) {
super(cause);
}
public UnsuccessfulHttpResponseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy