/**
  * Tests if the given exception was caused by this stream.
  *
  * @param exception an exception
  * @return {@code true} if the exception was thrown by this stream, {@code false} otherwise
  */
 public boolean isCauseOf(final Exception exception) {
   return TaggedIOException.isTaggedWith(exception, this.tag);
 }
Пример #2
0
 /*  18:    */
 /*  19:    */ public boolean isCauseOf(Exception exception) /*  20:    */ {
   /*  21: 88 */ return TaggedIOException.isTaggedWith(exception, this.tag);
   /*  22:    */ }