Example #1
0
 /** {@inheritDoc} */
 public void printStackTrace(PrintWriter out) {
   delegate.printStackTrace(out);
 }
Example #2
0
 /** {@inheritDoc} */
 public void printStackTrace() {
   delegate.printStackTrace();
 }
Example #3
0
 /** {@inheritDoc} */
 public void printStackTrace(PrintStream out) {
   delegate.printStackTrace(out);
 }
Example #4
0
 /** {@inheritDoc} */
 public int indexOfThrowable(Class type) {
   return delegate.indexOfThrowable(type, 0);
 }
Example #5
0
 /** {@inheritDoc} */
 public int indexOfThrowable(Class type, int fromIndex) {
   return delegate.indexOfThrowable(type, fromIndex);
 }
Example #6
0
 /** {@inheritDoc} */
 public Throwable[] getThrowables() {
   return delegate.getThrowables();
 }
Example #7
0
 /** {@inheritDoc} */
 public int getThrowableCount() {
   return delegate.getThrowableCount();
 }
Example #8
0
 /** {@inheritDoc} */
 public Throwable getThrowable(int index) {
   return delegate.getThrowable(index);
 }
Example #9
0
 /** {@inheritDoc} */
 public String[] getMessages() {
   return delegate.getMessages();
 }
Example #10
0
 /** {@inheritDoc} */
 public String getMessage(int index) {
   if (index == 0) {
     return super.getMessage();
   }
   return delegate.getMessage(index);
 }