1 package org.enhydra.oyster.exception; 2 3 import java.io.IOException ; 4 5 12 13 22 public class SMIMEIOException extends IOException  23 { 24 27 private SMIMEException smimeException = null; 28 29 34 public SMIMEIOException(SMIMEException exception0) 35 { 36 super(exception0.getInformation()); 37 smimeException = exception0; 38 } 39 40 43 public SMIMEException getSMIMEException() 44 { 45 return smimeException; 46 } 47 } | Popular Tags |