KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > org > apache > xml > internal > security > signature > XMLSignatureException


1
2 /*
3  * Copyright 1999-2004 The Apache Software Foundation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */

18 package com.sun.org.apache.xml.internal.security.signature;
19
20
21
22 import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException;
23
24
25 /**
26  * All XML Signature related exceptions inherit herefrom.
27  *
28  * @see MissingResourceFailureException InvalidDigestValueException InvalidSignatureValueException
29  * @author Christian Geuer-Pollmann
30  */

31 public class XMLSignatureException extends XMLSecurityException {
32
33    /**
34      *
35      */

36     private static final long serialVersionUID = 1L;
37
38    /**
39     * Constructor XMLSignatureException
40     *
41     */

42    public XMLSignatureException() {
43       super();
44    }
45
46    /**
47     * Constructor XMLSignatureException
48     *
49     * @param _msgID
50     */

51    public XMLSignatureException(String JavaDoc _msgID) {
52       super(_msgID);
53    }
54
55    /**
56     * Constructor XMLSignatureException
57     *
58     * @param _msgID
59     * @param exArgs
60     */

61    public XMLSignatureException(String JavaDoc _msgID, Object JavaDoc exArgs[]) {
62       super(_msgID, exArgs);
63    }
64
65    /**
66     * Constructor XMLSignatureException
67     *
68     * @param _msgID
69     * @param _originalException
70     */

71    public XMLSignatureException(String JavaDoc _msgID, Exception JavaDoc _originalException) {
72       super(_msgID, _originalException);
73    }
74
75    /**
76     * Constructor XMLSignatureException
77     *
78     * @param _msgID
79     * @param exArgs
80     * @param _originalException
81     */

82    public XMLSignatureException(String JavaDoc _msgID, Object JavaDoc exArgs[],
83                                 Exception JavaDoc _originalException) {
84       super(_msgID, exArgs, _originalException);
85    }
86 }
87
Popular Tags