
com.faunadb.client.errors.UnauthorizedException Maven / Gradle / Ivy
The newest version!
package com.faunadb.client.errors;
/**
* An exception thrown if FaunaDB responds with an HTTP 401 (Unauthorized).
*/
public class UnauthorizedException extends FaunaException {
public UnauthorizedException(String message, int httpStatusCode) {
super(message, httpStatusCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy