// 6.5 mega exceptions per second (MEPS) // So this is ~25 times faster as regular exceptions svoid bench_throwAndCatchQuickException() { benchFor10(-> { try { if (alwaysTrue()) throw new QuickException; } catch (QuickException e) { } }); }