cause.printStackTrace(w);
}
}
+
+ /**
+ * Prints this exception and its backtrace.
+ */
+ public void printStackTrace(java.io.PrintStream w) {
+ super.printStackTrace(w);
+ if (cause != null) {
+ w.println("Caused by:");
+ cause.printStackTrace(w);
+ }
+ }
}
*
* @see javassist.bytecode.AnnotationsAttribute#getAnnotations()
* @see javassist.bytecode.ParameterAnnotationsAttribute#getAnnotations()
+ * @see MemberValue
+ * @see MemberValueVisitor
+ * @see AnnotationsWriter
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @author Shigeru Chiba