KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > org > apache > xml > internal > security > exceptions > Base64DecodingException


1 /*
2  * Copyright 1999-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.exceptions;
18
19
20
21 /**
22  * This Exception is thrown if decoding of Base64 data fails.
23  *
24  * @author Christian Geuer-Pollmann
25  */

26 public class Base64DecodingException extends XMLSecurityException {
27
28    /**
29      *
30      */

31     private static final long serialVersionUID = 1L;
32
33    /**
34     * Constructor Base64DecodingException
35     *
36     */

37    public Base64DecodingException() {
38       super();
39    }
40
41    /**
42     * Constructor Base64DecodingException
43     *
44     * @param _msgID
45     */

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

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

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

78    public Base64DecodingException(String JavaDoc _msgID, Object JavaDoc exArgs[],
79                                               Exception JavaDoc _originalException) {
80       super(_msgID, exArgs, _originalException);
81    }
82 }
83
Popular Tags