提交 af8a11e4 编写于 作者: S smarks

8224549: Less Blocking Array Queues

Reviewed-by: bchristi, rhalade, rriggs, mschoene, robm
上级 6f0eb227
......@@ -1120,6 +1120,10 @@ public class ObjectStreamClass implements Serializable {
} catch (IllegalAccessException ex) {
// should not occur, as access checks have been suppressed
throw new InternalError(ex);
} catch (InstantiationError err) {
var ex = new InstantiationException();
ex.initCause(err);
throw ex;
}
} else {
throw new UnsupportedOperationException();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册