Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<?php // SPL exception hierarchy under Exception: // LogicException — programmer errors (detectable at compile-time logically) // InvalidArgumentException // OutOfRangeException // BadFunctionCallException // BadMethodCallException // LengthException // DomainException // RuntimeException — runtime errors // OutOfBoundsException // OverflowException // RangeException // UnderflowException // UnexpectedValueException throw new InvalidArgumentException("ID must be positive"); throw new OutOfRangeException("Index 50 out of range [0,10]"); throw new RuntimeException("API returned unexpected status 503");
Result
Open