blob: 929d3978f6e0f15b38d323d22bc73d1944c37646 [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.signature;
23
24
25
26import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException;
27
28
29/**
30 * All XML Signature related exceptions inherit herefrom.
31 *
32 * @see MissingResourceFailureException InvalidDigestValueException InvalidSignatureValueException
33 * @author Christian Geuer-Pollmann
34 */
35public class XMLSignatureException extends XMLSecurityException {
36
37 /**
38 *
39 */
40 private static final long serialVersionUID = 1L;
41
42 /**
43 * Constructor XMLSignatureException
44 *
45 */
46 public XMLSignatureException() {
47 super();
48 }
49
50 /**
51 * Constructor XMLSignatureException
52 *
53 * @param _msgID
54 */
55 public XMLSignatureException(String _msgID) {
56 super(_msgID);
57 }
58
59 /**
60 * Constructor XMLSignatureException
61 *
62 * @param _msgID
63 * @param exArgs
64 */
65 public XMLSignatureException(String _msgID, Object exArgs[]) {
66 super(_msgID, exArgs);
67 }
68
69 /**
70 * Constructor XMLSignatureException
71 *
72 * @param _msgID
73 * @param _originalException
74 */
75 public XMLSignatureException(String _msgID, Exception _originalException) {
76 super(_msgID, _originalException);
77 }
78
79 /**
80 * Constructor XMLSignatureException
81 *
82 * @param _msgID
83 * @param exArgs
84 * @param _originalException
85 */
86 public XMLSignatureException(String _msgID, Object exArgs[],
87 Exception _originalException) {
88 super(_msgID, exArgs, _originalException);
89 }
90}