KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > io > SyncFailedException


1 /*
2  * @(#)SyncFailedException.java 1.15 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.io;
9
10 /**
11  * Signals that a sync operation has failed.
12  *
13  * @author Ken Arnold
14  * @version 1.15, 12/19/03
15  * @see java.io.FileDescriptor#sync
16  * @see java.io.IOException
17  * @since JDK1.1
18  */

19 public class SyncFailedException extends IOException JavaDoc {
20     /**
21      * Constructs an SyncFailedException with a detail message.
22      * A detail message is a String that describes this particular exception.
23      *
24      * @param desc a String describing the exception.
25      */

26     public SyncFailedException(String JavaDoc desc) {
27     super(desc);
28     }
29 }
30
Popular Tags