1 28 29 package com.caucho.config; 30 31 import com.caucho.util.LineCompileException; 32 33 36 public class LineRuntimeException 37 extends RuntimeException  38 implements LineException 39 { 40 43 public LineRuntimeException() 44 { 45 } 46 47 50 public LineRuntimeException(String msg) 51 { 52 super(msg); 53 } 54 55 58 public LineRuntimeException(String msg, Throwable cause) 59 { 60 super(msg, cause); 61 } 62 63 66 public LineRuntimeException(Throwable cause) 67 { 68 super(cause); 69 } 70 } 71 | Popular Tags |