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