KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
23  * Raised if testing the signature value over <i>DigestValue</i> fails because of invalid signature.
24  *
25  * @see InvalidDigestValueException MissingKeyFailureException MissingResourceFailureException
26  * @author Christian Geuer-Pollmann
27  */

28 public class InvalidSignatureValueException extends XMLSignatureException {
29
30    /**
31      *
32      */

33     private static final long serialVersionUID = 1L;
34
35    /**
36     * Constructor InvalidSignatureValueException
37     *
38     */

39    public InvalidSignatureValueException() {
40       super();
41    }
42
43    /**
44     * Constructor InvalidSignatureValueException
45     *
46     * @param _msgID
47     */

48    public InvalidSignatureValueException(String JavaDoc _msgID) {
49       super(_msgID);
50    }
51
52    /**
53     * Constructor InvalidSignatureValueException
54     *
55     * @param _msgID
56     * @param exArgs
57     */

58    public InvalidSignatureValueException(String JavaDoc _msgID, Object JavaDoc exArgs[]) {
59       super(_msgID, exArgs);
60    }
61
62    /**
63     * Constructor InvalidSignatureValueException
64     *
65     * @param _msgID
66     * @param _originalException
67     */

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

80    public InvalidSignatureValueException(String JavaDoc _msgID, Object JavaDoc exArgs[],
81                                          Exception JavaDoc _originalException) {
82       super(_msgID, exArgs, _originalException);
83    }
84 }
85
Popular Tags