ObjectStreamException.java: Made constructors protected.
* java/io/ObjectStreamException.java: Made constructors protected. Adjusts serialVersionUID. From-SVN: r35315
This commit is contained in:
parent
66c29aeb8b
commit
614ee7902b
2 changed files with 6 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue