1 28 29 package com.caucho.ejb.burlap; 30 31 import com.caucho.util.ExceptionWrapper; 32 33 37 public class MarshalExceptionWrapper extends java.rmi.MarshalException  38 implements ExceptionWrapper { 39 private Exception root; 40 41 44 public MarshalExceptionWrapper(String s, Exception root) 45 { 46 super(s, root); 47 48 this.root = root; 49 } 50 51 54 public Throwable getRootCause() 55 { 56 return root; 57 } 58 } 59 | Popular Tags |