1 6 7 package de.schlichtherle.io.archive.spi; 8 9 import de.schlichtherle.io.File; 10 11 import java.io.IOException ; 12 13 36 public final class TransientIOException extends IOException { 37 38 42 public TransientIOException(IOException cause) { 43 if (cause == null) 44 throw new NullPointerException (); 45 initCause(cause); 46 } 47 48 52 public IOException getTransientCause() { 53 return (IOException ) getCause(); 54 } 55 } 56 | Popular Tags |