spl_exceptions.stub.php 745 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /** @generate-class-entries */
  3. class LogicException extends Exception
  4. {
  5. }
  6. class BadFunctionCallException extends LogicException
  7. {
  8. }
  9. class BadMethodCallException extends BadFunctionCallException
  10. {
  11. }
  12. class DomainException extends LogicException
  13. {
  14. }
  15. class InvalidArgumentException extends LogicException
  16. {
  17. }
  18. class LengthException extends LogicException
  19. {
  20. }
  21. class OutOfRangeException extends LogicException
  22. {
  23. }
  24. class RuntimeException extends Exception
  25. {
  26. }
  27. class OutOfBoundsException extends RuntimeException
  28. {
  29. }
  30. class OverflowException extends RuntimeException
  31. {
  32. }
  33. class RangeException extends RuntimeException
  34. {
  35. }
  36. class UnderflowException extends RuntimeException
  37. {
  38. }
  39. class UnexpectedValueException extends RuntimeException
  40. {
  41. }