1 /*
   2  * reserved comment block
   3  * DO NOT REMOVE OR ALTER!
   4  */
   5 /*
   6  * Copyright  1999-2004 The Apache Software Foundation.
   7  *
   8  *  Licensed under the Apache License, Version 2.0 (the "License");
   9  *  you may not use this file except in compliance with the License.
  10  *  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  *  Unless required by applicable law or agreed to in writing, software
  15  *  distributed under the License is distributed on an "AS IS" BASIS,
  16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  *  See the License for the specific language governing permissions and
  18  *  limitations under the License.
  19  *
  20  */
  21 package com.sun.org.apache.xml.internal.security.signature;
  22 
  23 
  24 
  25 /**
  26  * Raised if testing the signature value over <i>DigestValue</i> fails because of invalid signature.
  27  *
  28  * @see InvalidDigestValueException  MissingKeyFailureException  MissingResourceFailureException
  29  * @author Christian Geuer-Pollmann
  30  */
  31 public class InvalidSignatureValueException extends XMLSignatureException {
  32 
  33    /**
  34          *
  35          */
  36         private static final long serialVersionUID = 1L;
  37 
  38    /**
  39     * Constructor InvalidSignatureValueException
  40     *
  41     */
  42    public InvalidSignatureValueException() {
  43       super();
  44    }
  45 
  46    /**
  47     * Constructor InvalidSignatureValueException
  48     *
  49     * @param _msgID
  50     */
  51    public InvalidSignatureValueException(String _msgID) {
  52       super(_msgID);
  53    }
  54 
  55    /**
  56     * Constructor InvalidSignatureValueException
  57     *
  58     * @param _msgID
  59     * @param exArgs
  60     */
  61    public InvalidSignatureValueException(String _msgID, Object exArgs[]) {
  62       super(_msgID, exArgs);
  63    }
  64 
  65    /**
  66     * Constructor InvalidSignatureValueException
  67     *
  68     * @param _msgID
  69     * @param _originalException
  70     */
  71    public InvalidSignatureValueException(String _msgID,
  72                                          Exception _originalException) {
  73       super(_msgID, _originalException);
  74    }
  75 
  76    /**
  77     * Constructor InvalidSignatureValueException
  78     *
  79     * @param _msgID
  80     * @param exArgs
  81     * @param _originalException
  82     */
  83    public InvalidSignatureValueException(String _msgID, Object exArgs[],
  84                                          Exception _originalException) {
  85       super(_msgID, exArgs, _originalException);
  86    }
  87 }