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