1 28 29 package com.caucho.java; 30 31 import com.caucho.util.CompileException; 32 33 36 public class CompileClassNotFound 37 extends ClassNotFoundException  38 implements CompileException { 39 private Throwable _cause; 40 41 46 public CompileClassNotFound(String message) 47 { 48 super(message); 49 } 50 51 56 public CompileClassNotFound(Exception cause) 57 { 58 super(cause.getMessage()); 59 60 _cause = cause; 61 } 62 63 66 public Throwable getRootCause() 67 { 68 return _cause; 69 } 70 71 74 public Throwable getCause() 75 { 76 return _cause; 77 } 78 } 79 80 81 82 | Popular Tags |