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