All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.libgraviton.workerbase.exception.UnsuccessfulHttpResponseException Maven / Gradle / Ivy

There is a newer version: 0.26.0
Show newest version
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