1 /*
2  * reserved comment block
3  * DO NOT REMOVE OR ALTER!
4  */
5 /**
6  * Licensed to the Apache Software Foundation (ASF) under one
7  * or more contributor license agreements. See the NOTICE file
8  * distributed with this work for additional information
9  * regarding copyright ownership. The ASF licenses this file
10  * to you under the Apache License, Version 2.0 (the
11  * "License"); you may not use this file except in compliance
12  * with the License. You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing,
17  * software distributed under the License is distributed on an
18  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19  * KIND, either express or implied. See the License for the
20  * specific language governing permissions and limitations
21  * under the License.
22  */
23 package com.sun.org.apache.xml.internal.security.keys.keyresolver;
24 
25 import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException;
26 
27 public class InvalidKeyResolverException extends XMLSecurityException {
28 
29     /**
30      *
31      */
32     private static final long serialVersionUID = 1L;
33 
34     /**
35      * Constructor InvalidKeyResolverException
36      *
37      */
InvalidKeyResolverException()38     public InvalidKeyResolverException() {
39         super();
40     }
41 
42     /**
43      * Constructor InvalidKeyResolverException
44      *
45      * @param msgID
46      */
InvalidKeyResolverException(String msgID)47     public InvalidKeyResolverException(String msgID) {
48         super(msgID);
49     }
50 
51     /**
52      * Constructor InvalidKeyResolverException
53      *
54      * @param msgID
55      * @param exArgs
56      */
InvalidKeyResolverException(String msgID, Object exArgs[])57     public InvalidKeyResolverException(String msgID, Object exArgs[]) {
58         super(msgID, exArgs);
59     }
60 
61     /**
62      * Constructor InvalidKeyResolverException
63      *
64      * @param originalException
65      * @param msgID
66      */
InvalidKeyResolverException(Exception originalException, String msgID)67     public InvalidKeyResolverException(Exception originalException, String msgID) {
68         super(originalException, msgID);
69     }
70 
71     @Deprecated
InvalidKeyResolverException(String msgID, Exception originalException)72     public InvalidKeyResolverException(String msgID, Exception originalException) {
73         this(originalException, msgID);
74     }
75 
76     /**
77      * Constructor InvalidKeyResolverException
78      *
79      * @param originalException
80      * @param msgID
81      * @param exArgs
82      */
InvalidKeyResolverException(Exception originalException, String msgID, Object exArgs[])83     public InvalidKeyResolverException(Exception originalException, String msgID, Object exArgs[]) {
84         super(originalException, msgID, exArgs);
85     }
86 
87     @Deprecated
InvalidKeyResolverException(String msgID, Object[] exArgs, Exception originalException)88     public InvalidKeyResolverException(String msgID, Object[] exArgs, Exception originalException) {
89         this(originalException, msgID, exArgs);
90     }
91 }
92