com.caucho.vfs
Class SocketTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.caucho.vfs.SocketTimeoutException
- All Implemented Interfaces:
- java.io.Serializable
public class SocketTimeoutException
- extends java.io.IOException
Exception thrown when a client unexpectedly closes a connection.
Generally this is a broken pipe exception, but unfortunately, java.io.*
doesn't have a specific BrokenPipeException.
- See Also:
- Serialized Form
Method Summary |
static java.io.IOException |
create(java.io.IOException exn)
Only create a disconnect exception if it's an IOException
Possible later check for broken pipe. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
SocketTimeoutException
public SocketTimeoutException()
SocketTimeoutException
public SocketTimeoutException(java.lang.String msg)
SocketTimeoutException
public SocketTimeoutException(java.lang.Exception exn)
create
public static java.io.IOException create(java.io.IOException exn)
- Only create a disconnect exception if it's an IOException
Possible later check for broken pipe.