1 28 29 package com.caucho.el; 30 31 import javax.servlet.jsp.el.ELException ; 32 33 36 public class ELExceptionImpl extends ELException { 37 public ELExceptionImpl(String message) 38 { 39 super(message); 40 } 41 42 public ELExceptionImpl(String message, Throwable e) 43 { 44 super(message, e); 45 } 46 47 public ELExceptionImpl(Throwable e) 48 { 49 super(e); 50 } 51 52 public static ELException create(Throwable e) 53 { 54 if (e instanceof ELException ) 55 return (ELException ) e; 56 else 57 return new ELException (e); 58 } 59 } 60 | Popular Tags |