2003-03-23 12:32:24 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2008-12-31 19:15:49 +08:00
|
|
|
| Copyright (c) 1998-2009 Zend Technologies Ltd. (http://www.zend.com) |
|
2003-03-23 12:32:24 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-03-23 12:32:24 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-02-12 18:38:14 +08:00
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
2003-08-24 23:07:00 +08:00
|
|
|
| Marcus Boerger <helly@php.net> |
|
2004-02-12 18:38:14 +08:00
|
|
|
| Sterling Hughes <sterling@php.net> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
2003-03-23 12:32:24 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2004-02-12 18:38:14 +08:00
|
|
|
#ifndef ZEND_EXCEPTIONS_H
|
|
|
|
#define ZEND_EXCEPTIONS_H
|
2003-03-23 12:32:24 +08:00
|
|
|
|
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
2008-08-14 18:24:52 +08:00
|
|
|
ZEND_API void zend_exception_set_previous(zval *exception, zval *add_previous TSRMLS_DC);
|
|
|
|
ZEND_API void zend_exception_save(TSRMLS_D);
|
|
|
|
ZEND_API void zend_exception_restore(TSRMLS_D);
|
2008-07-14 05:42:49 +08:00
|
|
|
|
2004-05-21 01:59:27 +08:00
|
|
|
void zend_throw_exception_internal(zval *exception TSRMLS_DC);
|
2004-02-12 18:38:14 +08:00
|
|
|
|
|
|
|
void zend_register_default_exception(TSRMLS_D);
|
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
ZEND_API zend_class_entry *zend_exception_get_default(TSRMLS_D);
|
|
|
|
ZEND_API zend_class_entry *zend_get_error_exception(TSRMLS_D);
|
2003-03-23 12:32:24 +08:00
|
|
|
ZEND_API void zend_register_default_classes(TSRMLS_D);
|
2003-08-24 23:07:00 +08:00
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
/* exception_ce NULL or zend_exception_get_default() or a derived class
|
2003-08-24 23:07:00 +08:00
|
|
|
* message NULL or the message of the exception */
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_API zval * zend_throw_exception(zend_class_entry *exception_ce, char *message, long code TSRMLS_DC);
|
|
|
|
ZEND_API zval * zend_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, char *format, ...);
|
2004-02-12 18:24:40 +08:00
|
|
|
ZEND_API void zend_throw_exception_object(zval *exception TSRMLS_DC);
|
2004-02-12 18:38:14 +08:00
|
|
|
ZEND_API void zend_clear_exception(TSRMLS_D);
|
2003-08-24 23:07:00 +08:00
|
|
|
|
2004-07-16 06:21:36 +08:00
|
|
|
ZEND_API zval * zend_throw_error_exception(zend_class_entry *exception_ce, char *message, long code, int severity TSRMLS_DC);
|
|
|
|
|
2004-04-29 03:20:28 +08:00
|
|
|
extern ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC);
|
2004-04-13 23:19:21 +08:00
|
|
|
|
2003-08-24 23:07:00 +08:00
|
|
|
/* show an exception using zend_error(E_ERROR,...) */
|
2003-08-24 21:10:03 +08:00
|
|
|
ZEND_API void zend_exception_error(zval *exception TSRMLS_DC);
|
2003-08-24 23:07:00 +08:00
|
|
|
|
2006-05-10 07:53:23 +08:00
|
|
|
/* do not export, in php it's available thru spprintf directly */
|
|
|
|
int zend_spprintf(char **message, int max_len, char *format, ...);
|
|
|
|
|
2003-03-23 12:32:24 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|