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

com.nycjv321.http.exceptions.UnAuthorizedException Maven / Gradle / Ivy

Go to download

A simple wrapper of Apache's Http Client Library that tries to make interacting with HTTP Easy

The newest version!
package com.nycjv321.http.exceptions;

/**
 * This exception is thrown when the request was not authorized
 */
public class UnAuthorizedException extends RuntimeException {
    public UnAuthorizedException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy