1 17 package com.sun.org.apache.xml.internal.security.exceptions; 18 19 20 21 26 public class Base64DecodingException extends XMLSecurityException { 27 28 31 private static final long serialVersionUID = 1L; 32 33 37 public Base64DecodingException() { 38 super(); 39 } 40 41 46 public Base64DecodingException(String _msgID) { 47 super(_msgID); 48 } 49 50 56 public Base64DecodingException(String _msgID, Object exArgs[]) { 57 super(_msgID, exArgs); 58 } 59 60 66 public Base64DecodingException(String _msgID, 67 Exception _originalException) { 68 super(_msgID, _originalException); 69 } 70 71 78 public Base64DecodingException(String _msgID, Object exArgs[], 79 Exception _originalException) { 80 super(_msgID, exArgs, _originalException); 81 } 82 } 83 | Popular Tags |