1 29 30 package com.caucho.quercus; 31 32 35 public class QuercusLineRuntimeException extends QuercusRuntimeException { 36 public QuercusLineRuntimeException() 37 { 38 } 39 40 public QuercusLineRuntimeException(String msg) 41 { 42 super(msg); 43 } 44 45 public QuercusLineRuntimeException(Throwable cause) 46 { 47 super(cause); 48 } 49 50 public QuercusLineRuntimeException(String msg, Throwable cause) 51 { 52 super(msg, cause); 53 } 54 } 55 56 | Popular Tags |