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:
Michael Koch 2003-02-11 06:46:16 +00:00 committed by Michael Koch
parent 294901f879
commit bde8b5818b
3 changed files with 35 additions and 4 deletions

View File

@ -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.

View File

@ -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;
}
}

View File

@ -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;
}
}