1 2 18 package com.sun.org.apache.xml.internal.security.signature; 19 20 21 22 27 public class InvalidDigestValueException extends XMLSignatureException { 28 29 32 private static final long serialVersionUID = 1L; 33 34 38 public InvalidDigestValueException() { 39 super(); 40 } 41 42 47 public InvalidDigestValueException(String _msgID) { 48 super(_msgID); 49 } 50 51 57 public InvalidDigestValueException(String _msgID, Object exArgs[]) { 58 super(_msgID, exArgs); 59 } 60 61 67 public InvalidDigestValueException(String _msgID, 68 Exception _originalException) { 69 super(_msgID, _originalException); 70 } 71 72 79 public InvalidDigestValueException(String _msgID, Object exArgs[], 80 Exception _originalException) { 81 super(_msgID, exArgs, _originalException); 82 } 83 } 84 | Popular Tags |