ObjectStreamException.java: Made constructors protected.

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

Adjusts serialVersionUID.

From-SVN: r35315
This commit is contained in:
Warren Levy 2000-07-28 11:58:03 +00:00 committed by Warren Levy
parent 66c29aeb8b
commit 614ee7902b
2 changed files with 6 additions and 2 deletions

View file

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