Error Handling Learning Mode

What will this code output?

<?php
class IndianaError extends ArithmeticError {}
define('PI', 3);
try {
 if (is_int(PI)) {
 throw new IndianaError('Oops');
 }
} catch (Exception $e) {
 echo $e->getMessage();
}