1 17 18 package javax.servlet.jsp.el; 19 20 21 28 public class ELException 29 extends Exception  30 { 31 35 private Throwable mRootCause; 36 37 41 public ELException () 42 { 43 super (); 44 } 45 46 52 public ELException (String pMessage) 53 { 54 super (pMessage); 55 } 56 57 63 public ELException (Throwable pRootCause) 64 { 65 super( pRootCause.getLocalizedMessage() ); 66 mRootCause = pRootCause; 67 } 68 69 76 public ELException (String pMessage, 77 Throwable pRootCause) 78 { 79 super (pMessage); 80 mRootCause = pRootCause; 81 } 82 83 89 public Throwable getRootCause () 90 { 91 return mRootCause; 92 } 93 } 94 | Popular Tags |