KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > org > apache > xml > internal > security > encryption > XMLEncryptionException


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

17 package com.sun.org.apache.xml.internal.security.encryption;
18
19 import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException;
20
21 /**
22  *
23  */

24 public class XMLEncryptionException extends XMLSecurityException {
25     /**
26      *
27      */

28     private static final long serialVersionUID = 1L;
29     /**
30      *
31      *
32      */

33    public XMLEncryptionException() {
34       super();
35    }
36    /**
37     *
38     * @param _msgID
39     */

40    public XMLEncryptionException(String JavaDoc _msgID) {
41       super(_msgID);
42    }
43    /**
44     *
45     * @param _msgID
46     * @param exArgs
47     */

48    public XMLEncryptionException(String JavaDoc _msgID, Object JavaDoc exArgs[]) {
49       super(_msgID, exArgs);
50    }
51    /**
52     *
53     * @param _msgID
54     * @param _originalException
55     */

56    public XMLEncryptionException(String JavaDoc _msgID,
57                                               Exception JavaDoc _originalException) {
58       super(_msgID, _originalException);
59    }
60    /**
61     *
62     * @param _msgID
63     * @param exArgs
64     * @param _originalException
65     */

66    public XMLEncryptionException(String JavaDoc _msgID, Object JavaDoc exArgs[],
67                                               Exception JavaDoc _originalException) {
68       super(_msgID, exArgs, _originalException);
69    }
70 }
71
Popular Tags