1 6 21 22 package de.schlichtherle.io; 23 24 37 public class ArchiveBusyWarningException extends ArchiveWarningException { 38 39 ArchiveBusyWarningException(ArchiveException priorException, String canPath) { 40 super(priorException, canPath); 41 } 42 43 48 public ArchiveBusyWarningException( 49 ArchiveException priorException, java.io.File target) { 50 super(priorException, target.getPath()); 51 } 52 } 53 | Popular Tags |