1 54 package org.logicalcobwebs.cglib.core; 55 56 59 public class CodeGenerationException extends RuntimeException { 60 private Throwable cause; 61 62 public CodeGenerationException(Throwable cause) { 63 super(cause.getClass().getName() + "-->" + cause.getMessage()); 64 this.cause = cause; 65 } 66 67 public Throwable getCause() { 68 return cause; 69 } 70 } 71 | Popular Tags |