1 6 7 package de.schlichtherle.io; 8 9 14 public class ArchiveInputBusyWarningException extends ArchiveBusyWarningException { 15 16 private final int numStreams; 17 18 public ArchiveInputBusyWarningException( 19 ArchiveException priorException, String canPath, int numStreams) { 20 super(priorException, canPath); 21 this.numStreams = numStreams; 22 } 23 24 28 public int getNumStreams() { 29 return numStreams; 30 } 31 } 32 | Popular Tags |