Commit 7189ea29 by Tom Tromey Committed by Tom Tromey

AlreadyConnectedException.java: Extend IllegalStateException, per spec.

	* java/nio/channels/AlreadyConnectedException.java: Extend
	IllegalStateException, per spec.

From-SVN: r58773
parent de36f65d
2002-11-03 Tom Tromey <tromey@redhat.com>
* java/nio/channels/AlreadyConnectedException.java: Extend
IllegalStateException, per spec.
2002-10-31 Stephen Crawley <crawley@dstc.edu.au> 2002-10-31 Stephen Crawley <crawley@dstc.edu.au>
* java/lang/Double.java (valueOf): Return new Double(parseDouble(s)). * java/lang/Double.java (valueOf): Return new Double(parseDouble(s)).
......
...@@ -37,13 +37,11 @@ exception statement from your version. */ ...@@ -37,13 +37,11 @@ exception statement from your version. */
package java.nio.channels; package java.nio.channels;
import java.io.IOException; import java.io.*;
public class AlreadyConnectedException extends IOException
public class AlreadyConnectedException extends IllegalStateException
{ {
/**
* Creates the exception
*/
public AlreadyConnectedException() public AlreadyConnectedException()
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment