1 16 19 package com.sun.org.apache.xml.internal.serializer.utils; 20 21 33 public final class WrappedRuntimeException extends RuntimeException  34 { 35 static final long serialVersionUID = 7140414456714658073L; 36 37 39 private Exception m_exception; 40 41 47 public WrappedRuntimeException(Exception e) 48 { 49 50 super(e.getMessage()); 51 52 m_exception = e; 53 } 54 55 62 public WrappedRuntimeException(String msg, Exception e) 63 { 64 65 super(msg); 66 67 m_exception = e; 68 } 69 70 75 public Exception getException() 76 { 77 return m_exception; 78 } 79 } 80 | Popular Tags |