com.nycjv321.http.exceptions.UnAuthorizedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-http-client Show documentation
Show all versions of simple-http-client Show documentation
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