Wrap reflectiveoperationexception in concurrentlist clone

This commit is contained in:
KennyTV 2020-04-23 21:42:08 +02:00
parent 886ac734f9
commit 32826467d3
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -69,7 +69,7 @@ public class ConcurrentList<E> extends ArrayList<E> {
return clist;
} catch (ReflectiveOperationException e) {
throw new RuntimeException();
throw new RuntimeException(e);
}
}
}