From 3d312b7eb5f685f4d9b7dba27763b97a212e3021 Mon Sep 17 00:00:00 2001 From: William Kim Date: Fri, 12 Jul 2013 09:09:54 -0400 Subject: [PATCH] Deleted PermissionDeniedException class. Unused. --- .../exception/PermissionDeniedException.java | 65 ------------------- 1 file changed, 65 deletions(-) delete mode 100644 openid-connect-server/src/main/java/org/mitre/oauth2/exception/PermissionDeniedException.java diff --git a/openid-connect-server/src/main/java/org/mitre/oauth2/exception/PermissionDeniedException.java b/openid-connect-server/src/main/java/org/mitre/oauth2/exception/PermissionDeniedException.java deleted file mode 100644 index 22fe0e1da..000000000 --- a/openid-connect-server/src/main/java/org/mitre/oauth2/exception/PermissionDeniedException.java +++ /dev/null @@ -1,65 +0,0 @@ -/******************************************************************************* - * Copyright 2013 The MITRE Corporation - * and the MIT Kerberos and Internet Trust Consortium - * - * 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.mitre.oauth2.exception; - -/** - * @author AANGANES - * - */ -public class PermissionDeniedException extends RuntimeException { - - /** - * - */ - private static final long serialVersionUID = 1L; - - /** - * - */ - public PermissionDeniedException() { - // TODO Auto-generated constructor stub - } - - /** - * @param message - */ - public PermissionDeniedException(String message) { - super(message); - // TODO Auto-generated constructor stub - } - - /** - * @param cause - */ - public PermissionDeniedException(Throwable cause) { - super(cause); - // TODO Auto-generated constructor stub - } - - /** - * @param message - * @param cause - */ - public PermissionDeniedException(String message, Throwable cause) { - super(message, cause); - // TODO Auto-generated constructor stub - } - -}