/** {@inheritDoc} */ public void printStackTrace(PrintWriter out) { delegate.printStackTrace(out); }
/** {@inheritDoc} */ public void printStackTrace() { delegate.printStackTrace(); }
/** {@inheritDoc} */ public void printStackTrace(PrintStream out) { delegate.printStackTrace(out); }
/** {@inheritDoc} */ public int indexOfThrowable(Class type) { return delegate.indexOfThrowable(type, 0); }
/** {@inheritDoc} */ public int indexOfThrowable(Class type, int fromIndex) { return delegate.indexOfThrowable(type, fromIndex); }
/** {@inheritDoc} */ public Throwable[] getThrowables() { return delegate.getThrowables(); }
/** {@inheritDoc} */ public int getThrowableCount() { return delegate.getThrowableCount(); }
/** {@inheritDoc} */ public Throwable getThrowable(int index) { return delegate.getThrowable(index); }
/** {@inheritDoc} */ public String[] getMessages() { return delegate.getMessages(); }
/** {@inheritDoc} */ public String getMessage(int index) { if (index == 0) { return super.getMessage(); } return delegate.getMessage(index); }