spl_exceptions.c 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Marcus Boerger <helly@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. # include "config.h"
  20. #endif
  21. #include "php.h"
  22. #include "php_ini.h"
  23. #include "ext/standard/info.h"
  24. #include "zend_interfaces.h"
  25. #include "zend_exceptions.h"
  26. #include "php_spl.h"
  27. #include "spl_functions.h"
  28. #include "spl_engine.h"
  29. #include "spl_exceptions.h"
  30. PHPAPI zend_class_entry *spl_ce_LogicException;
  31. PHPAPI zend_class_entry *spl_ce_BadFunctionCallException;
  32. PHPAPI zend_class_entry *spl_ce_BadMethodCallException;
  33. PHPAPI zend_class_entry *spl_ce_DomainException;
  34. PHPAPI zend_class_entry *spl_ce_InvalidArgumentException;
  35. PHPAPI zend_class_entry *spl_ce_LengthException;
  36. PHPAPI zend_class_entry *spl_ce_OutOfRangeException;
  37. PHPAPI zend_class_entry *spl_ce_RuntimeException;
  38. PHPAPI zend_class_entry *spl_ce_OutOfBoundsException;
  39. PHPAPI zend_class_entry *spl_ce_OverflowException;
  40. PHPAPI zend_class_entry *spl_ce_RangeException;
  41. PHPAPI zend_class_entry *spl_ce_UnderflowException;
  42. PHPAPI zend_class_entry *spl_ce_UnexpectedValueException;
  43. #define spl_ce_Exception zend_ce_exception
  44. /* {{{ PHP_MINIT_FUNCTION(spl_exceptions) */
  45. PHP_MINIT_FUNCTION(spl_exceptions)
  46. {
  47. REGISTER_SPL_SUB_CLASS_EX(LogicException, Exception, NULL, NULL);
  48. REGISTER_SPL_SUB_CLASS_EX(BadFunctionCallException, LogicException, NULL, NULL);
  49. REGISTER_SPL_SUB_CLASS_EX(BadMethodCallException, BadFunctionCallException, NULL, NULL);
  50. REGISTER_SPL_SUB_CLASS_EX(DomainException, LogicException, NULL, NULL);
  51. REGISTER_SPL_SUB_CLASS_EX(InvalidArgumentException, LogicException, NULL, NULL);
  52. REGISTER_SPL_SUB_CLASS_EX(LengthException, LogicException, NULL, NULL);
  53. REGISTER_SPL_SUB_CLASS_EX(OutOfRangeException, LogicException, NULL, NULL);
  54. REGISTER_SPL_SUB_CLASS_EX(RuntimeException, Exception, NULL, NULL);
  55. REGISTER_SPL_SUB_CLASS_EX(OutOfBoundsException, RuntimeException, NULL, NULL);
  56. REGISTER_SPL_SUB_CLASS_EX(OverflowException, RuntimeException, NULL, NULL);
  57. REGISTER_SPL_SUB_CLASS_EX(RangeException, RuntimeException, NULL, NULL);
  58. REGISTER_SPL_SUB_CLASS_EX(UnderflowException, RuntimeException, NULL, NULL);
  59. REGISTER_SPL_SUB_CLASS_EX(UnexpectedValueException, RuntimeException, NULL, NULL);
  60. return SUCCESS;
  61. }
  62. /* }}} */
  63. /*
  64. * Local variables:
  65. * tab-width: 4
  66. * c-basic-offset: 4
  67. * End:
  68. * vim600: fdm=marker
  69. * vim: noet sw=4 ts=4
  70. */