mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8224549
: Less Blocking Array Queues
Reviewed-by: bchristi, rhalade, rriggs, mschoene, robm
This commit is contained in:
parent
d7136cd430
commit
14c0c19539
1 changed files with 4 additions and 0 deletions
|
@ -1161,6 +1161,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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue