1 2 18 package com.sun.org.apache.xml.internal.security.signature; 19 20 21 22 23 24 30 public class ReferenceNotInitializedException extends XMLSignatureException { 31 32 35 private static final long serialVersionUID = 1L; 36 37 41 public ReferenceNotInitializedException() { 42 super(); 43 } 44 45 50 public ReferenceNotInitializedException(String _msgID) { 51 super(_msgID); 52 } 53 54 60 public ReferenceNotInitializedException(String _msgID, Object exArgs[]) { 61 super(_msgID, exArgs); 62 } 63 64 70 public ReferenceNotInitializedException(String _msgID, 71 Exception _originalException) { 72 super(_msgID, _originalException); 73 } 74 75 82 public ReferenceNotInitializedException(String _msgID, Object exArgs[], 83 Exception _originalException) { 84 super(_msgID, exArgs, _originalException); 85 } 86 } 87 | Popular Tags |