Commit 614ee790 by Warren Levy Committed by Warren Levy

ObjectStreamException.java: Made constructors protected.

	* java/io/ObjectStreamException.java: Made constructors protected.

Adjusts serialVersionUID.

From-SVN: r35315
parent 66c29aeb
2000-07-28 Warren Levy <warrenl@cygnus.com>
* java/io/ObjectStreamException.java: Made constructors protected.
2000-07-27 Tom Tromey <tromey@cygnus.com>
* java/io/OutputStreamWriter.java (close): Only flush if not
......
......@@ -19,12 +19,12 @@ package java.io;
public abstract class ObjectStreamException extends IOException
{
public ObjectStreamException()
protected ObjectStreamException()
{
super();
}
public ObjectStreamException(String msg)
protected ObjectStreamException(String msg)
{
super(msg);
}
......
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