jdk/src/share/classes/com/sun/org/apache/xml/internal/security/exceptions/Base64DecodingException.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 18780 f47b920867e7
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * reserved comment block
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT REMOVE OR ALTER!
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * Copyright  1999-2004 The Apache Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *  Licensed under the Apache License, Version 2.0 (the "License");
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *  you may not use this file except in compliance with the License.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *  You may obtain a copy of the License at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 *      http://www.apache.org/licenses/LICENSE-2.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *  Unless required by applicable law or agreed to in writing, software
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *  distributed under the License is distributed on an "AS IS" BASIS,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 *  See the License for the specific language governing permissions and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *  limitations under the License.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
package com.sun.org.apache.xml.internal.security.exceptions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This Exception is thrown if decoding of Base64 data fails.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Christian Geuer-Pollmann
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
public class Base64DecodingException extends XMLSecurityException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
        private static final long serialVersionUID = 1L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    * Constructor Base64DecodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
   public Base64DecodingException() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
      super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    * Constructor Base64DecodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    * @param _msgID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
   public Base64DecodingException(String _msgID) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
      super(_msgID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    * Constructor Base64DecodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    * @param _msgID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    * @param exArgs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
   public Base64DecodingException(String _msgID, Object exArgs[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
      super(_msgID, exArgs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    * Constructor Base64DecodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    * @param _msgID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    * @param _originalException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
   public Base64DecodingException(String _msgID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                                              Exception _originalException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
      super(_msgID, _originalException);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    * Constructor Base64DecodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    * @param _msgID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    * @param exArgs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    * @param _originalException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
   public Base64DecodingException(String _msgID, Object exArgs[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                                              Exception _originalException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
      super(_msgID, exArgs, _originalException);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
}