KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > schlichtherle > io > ArchiveEntryStreamClosedException


1 /*
2  * ArchiveEntryStreamClosedException.java
3  *
4  * Created on 8. Maerz 2006, 21:07
5  */

6
7 package de.schlichtherle.io;
8
9
10 import java.io.IOException JavaDoc;
11
12 /**
13  * Thrown to indicate that an input or output stream for an archive entry
14  * has been forcibly closed by {@link File#update()} or {@link File#umount()}.
15  *
16  * @author Christian Schlichtherle
17  * @version @version@
18  * @since TrueZIP 6.0
19  */

20 public class ArchiveEntryStreamClosedException extends IOException JavaDoc {
21     
22     public ArchiveEntryStreamClosedException() {
23         super("This archive entry stream has been forced to close() when File.update() or File.umount() has been called, which disables all I/O to it!");
24     }
25 }
26
Popular Tags