AlreadyConnectedException.java: Extend IllegalStateException, per spec.
* java/nio/channels/AlreadyConnectedException.java: Extend IllegalStateException, per spec. From-SVN: r58773
This commit is contained in:
parent
de36f65dd1
commit
7189ea2902
2 changed files with 8 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
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. */
|
||||||
|
|
||||||
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()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue