From b3282957a880c7229c5aa84c2af2d0410482b54b Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Thu, 6 Sep 2018 13:06:39 -0400 Subject: [PATCH] Add OAuth2AuthorizationException --- .../core/OAuth2AuthorizationException.java | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/OAuth2AuthorizationException.java diff --git a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/OAuth2AuthorizationException.java b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/OAuth2AuthorizationException.java new file mode 100644 index 0000000000..94ac285549 --- /dev/null +++ b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/OAuth2AuthorizationException.java @@ -0,0 +1,56 @@ +/* + * Copyright 2002-2018 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.springframework.security.oauth2.core; + +/** + * Base exception for OAuth 2.0 Authorization errors. + * + * @author Joe Grandja + * @since 5.1 + */ +public class OAuth2AuthorizationException extends RuntimeException { + private OAuth2Error error; + + /** + * Constructs an {@code OAuth2AuthorizationException} using the provided parameters. + * + * @param error the {@link OAuth2Error OAuth 2.0 Error} + */ + public OAuth2AuthorizationException(OAuth2Error error) { + super(error.toString()); + this.error = error; + } + + /** + * Constructs an {@code OAuth2AuthorizationException} using the provided parameters. + * + * @param error the {@link OAuth2Error OAuth 2.0 Error} + * @param cause the root cause + */ + public OAuth2AuthorizationException(OAuth2Error error, Throwable cause) { + super(error.toString(), cause); + this.error = error; + } + + /** + * Returns the {@link OAuth2Error OAuth 2.0 Error}. + * + * @return the {@link OAuth2Error} + */ + public OAuth2Error getError() { + return this.error; + } +}