1 6 21 22 package de.schlichtherle.io; 23 24 34 public class ArchiveBusyException extends ArchiveException { 35 36 ArchiveBusyException(ArchiveException priorException, String canPath) { 37 super(priorException, canPath); 38 } 39 40 45 public ArchiveBusyException( 46 ArchiveException priorException, java.io.File target) { 47 super(priorException, target.getPath()); 48 49 assert target.isAbsolute(); 50 } 51 52 public int getPriority() { 53 return -2; 54 } 55 } 56 | Popular Tags |