> C++ Exceptions > <https://grenouillebouillie.wordpress.com/2022/05/09/the-hidden-cost-of-exception-handling>
A very good article but it makes the usual mistake: If you compare to `-fnoexceptions` you basically end up comparing "correct" to "not correct" code. And behold "not correct" code can be faster! Oh the miracle! A better comparison though is to compare it to code that uses Option[T] or Either[T, E] quite liberally where error handling is required.
