javax.microedition.io.file
Class ConnectionClosedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--javax.microedition.io.file.ConnectionClosedException

public class ConnectionClosedException
extends RuntimeException

A ConnectionClosedException indicates an unexpected error condition in a method.


Constructor Summary
ConnectionClosedException()
          Constructs a ConnectionClosedException with null as its error detail message.
ConnectionClosedException(String info)
          Constructs a ConnectionClosedException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
getMessage, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConnectionClosedException

public ConnectionClosedException()
Constructs a ConnectionClosedException with null as its error detail message.

ConnectionClosedException

public ConnectionClosedException(String info)
Constructs a ConnectionClosedException with the specified detail message. The error message string s can later be retrieved by the Throwable.getMessage() method of class java.lang.Throwable.
Parameters:
reason - the detail message.