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

com.aeontronix.enhancedmule.tools.util.UnauthorizedHttpException Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2019
 */

package com.aeontronix.enhancedmule.tools.util;

public class UnauthorizedHttpException extends HttpException {
    public UnauthorizedHttpException() {
    }

    public UnauthorizedHttpException(String message) {
        super(message);
    }

    public UnauthorizedHttpException(String message, Throwable cause) {
        super(message, cause);
    }

    public UnauthorizedHttpException(Throwable cause) {
        super(cause);
    }

    public UnauthorizedHttpException(int statusCode) {
        super(statusCode);
    }

    public UnauthorizedHttpException(String message, int statusCode) {
        super(message, statusCode);
    }

    public UnauthorizedHttpException(String message, Throwable cause, int statusCode) {
        super(message, cause, statusCode);
    }

    public UnauthorizedHttpException(Throwable cause, int statusCode) {
        super(cause, statusCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy