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