java.io
Class SyncFailedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--java.io.SyncFailedException
All Implemented Interfaces:
Serializable

public class SyncFailedException
extends IOException

Untamed: Signals that a sync operation has failed.

Since:
JDK1.1
Version:
1.13, 12/03/01
Author:
Ken Arnold
See Also:
java.io.FileDescriptor#sync, java.io.IOException, Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
SyncFailedException(String desc)
          Enabled: Constructs an SyncFailedException with a detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SyncFailedException

public SyncFailedException(String desc)
Enabled: Constructs an SyncFailedException with a detail message. A detail message is a String that describes this particular exception.

Parameters:
desc - a String describing the exception.


comments?