1 28 29 package com.caucho.jsp; 30 31 import com.caucho.java.LineMapException; 32 import com.caucho.util.LineCompileException; 33 34 public class JspLineParseException extends JspParseException 35 implements LineCompileException, LineMapException { 36 37 public JspLineParseException() 38 { 39 } 40 41 public JspLineParseException(String msg) 42 { 43 super(msg); 44 } 45 46 public JspLineParseException(Throwable e) 47 { 48 super(e.getMessage(), e); 49 } 50 51 public JspLineParseException(String msg, Throwable e) 52 { 53 super(msg, e); 54 } 55 } 56 | Popular Tags |