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