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