1 29 30 package com.caucho.quercus.parser; 31 32 import com.caucho.util.LineCompileException; 33 34 import java.io.IOException ; 35 36 39 public class QuercusParseException 40 extends IOException  41 implements LineCompileException { 42 public QuercusParseException() 43 { 44 } 45 46 public QuercusParseException(String msg) 47 { 48 super(msg); 49 } 50 51 public QuercusParseException(Throwable cause) 52 { 53 initCause(cause); 54 } 55 56 public QuercusParseException(String msg, Throwable cause) 57 { 58 super(msg); 59 60 initCause(cause); 61 } 62 } 63 64 | Popular Tags |