2003-02-08 Michael Koch <konqueror@gmx.de>
* java/nio/charset/IllegalCharsetNameException.java (serialVersionUID): New member variable. (charsetName): New member variable. (IllegalCharsetException): New implementation. (getCharsetName): New implementation. * java/nio/charset/UnsupportedCharsetException.java (serialVersionUID): New member variable. (charsetName): New member variable. (UnsupportedCharsetException): New implementation. (getCharsetName): New implementation. From-SVN: r62680
This commit is contained in:
parent
294901f879
commit
bde8b5818b
@ -1,3 +1,16 @@
|
||||
2003-02-11 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/nio/charset/IllegalCharsetNameException.java
|
||||
(serialVersionUID): New member variable.
|
||||
(charsetName): New member variable.
|
||||
(IllegalCharsetException): New implementation.
|
||||
(getCharsetName): New implementation.
|
||||
* java/nio/charset/UnsupportedCharsetException.java
|
||||
(serialVersionUID): New member variable.
|
||||
(charsetName): New member variable.
|
||||
(UnsupportedCharsetException): New implementation.
|
||||
(getCharsetName): New implementation.
|
||||
|
||||
2003-02-10 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* javax/sql/ConnectionEvent.java (serialVersionUID): New field.
|
||||
|
@ -38,16 +38,25 @@ exception statement from your version. */
|
||||
package java.nio.charset;
|
||||
|
||||
/**
|
||||
* @author Michael Koch
|
||||
* @since 1.4
|
||||
*/
|
||||
public class IllegalCharsetNameException extends IllegalArgumentException
|
||||
{
|
||||
/**
|
||||
* Compatible with JDK 1.4+
|
||||
*/
|
||||
private static final long serialVersionUID = 1457525358470002989L;
|
||||
|
||||
String charsetName;
|
||||
|
||||
/**
|
||||
* Creates the exception
|
||||
*/
|
||||
public IllegalCharsetNameException (String charsetName)
|
||||
{
|
||||
super (charsetName);
|
||||
super ();
|
||||
this.charsetName = charsetName;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -55,6 +64,6 @@ public class IllegalCharsetNameException extends IllegalArgumentException
|
||||
*/
|
||||
public String getCharsetName ()
|
||||
{
|
||||
return getMessage ();
|
||||
return charsetName;
|
||||
}
|
||||
}
|
||||
|
@ -38,16 +38,25 @@ exception statement from your version. */
|
||||
package java.nio.charset;
|
||||
|
||||
/**
|
||||
* @author Michael Koch
|
||||
* @since 1.4
|
||||
*/
|
||||
public class UnsupportedCharsetException extends IllegalArgumentException
|
||||
{
|
||||
/**
|
||||
* Compatible with JDK 1.4+
|
||||
*/
|
||||
private static final long serialVersionUID = 1490765524727386367L;
|
||||
|
||||
String charsetName;
|
||||
|
||||
/**
|
||||
* Creates the exception
|
||||
*/
|
||||
public UnsupportedCharsetException (String charsetName)
|
||||
{
|
||||
super (charsetName);
|
||||
super ();
|
||||
this.charsetName = charsetName;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -55,6 +64,6 @@ public class UnsupportedCharsetException extends IllegalArgumentException
|
||||
*/
|
||||
public String getCharsetName ()
|
||||
{
|
||||
return getMessage ();
|
||||
return charsetName;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user