1 6 21 22 package de.schlichtherle.io.archive.spi; 23 24 import de.schlichtherle.io.FileBusyException; 25 26 38 public class OutputArchiveBusyException extends FileBusyException { 39 40 private final ArchiveEntry entry; 41 42 49 public OutputArchiveBusyException(ArchiveEntry entry) { 50 this.entry = entry; 51 } 52 53 public ArchiveEntry getEntry() { 54 return entry; 55 } 56 } 57 | Popular Tags |