Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed memory leak | Dmitry Stogov | 2005-08-16 | 1 | -0/+1 |
| | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | - Fixed bug #33967 (misuse of Exception constructor doesn\'t display errorfile) | foobar | 2005-08-02 | 1 | -2/+2 |
| | |||||
* | fix various "Class entry requested for an object without PHP class" messages | Stanislav Malyshev | 2005-06-27 | 1 | -1/+11 |
| | | | | | | | when working with non-PHP objects. # Using Z_OBJCE(object)->name is usually bad idea unless you know it's # a pure PHP object | ||||
* | No c++ comments in C code | foobar | 2005-04-19 | 1 | -1/+1 |
| | |||||
* | Fixed bug #30904 (segfault when recording soapclient into session). | Dmitry Stogov | 2004-12-07 | 1 | -1/+2 |
| | |||||
* | - Fix protos | Marcus Boerger | 2004-10-30 | 1 | -1/+1 |
| | |||||
* | - Fix memeleak | Marcus Boerger | 2004-09-27 | 1 | -1/+4 |
| | |||||
* | - Roll back VM commit | Andi Gutmans | 2004-09-09 | 1 | -1/+1 |
| | |||||
* | - Some architectural changes: | Andi Gutmans | 2004-09-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | a) We specialize opcodes according to op_type fields. Each opcode has to be marked with which op_type's it uses. b) We support different execution methods. Function handlers, switch() and goto dispatching. goto seems to be the fastest but it really depends on the compiler and how well it optimizes. I suggest playing around with optimization flags. - Warning: Things might break so keep us posted on how things are going. (Dmitry, Andi) | ||||
* | - Be specific about visibility | Marcus Boerger | 2004-07-27 | 1 | -2/+2 |
| | |||||
* | - Add optional parameters $filename and $lineno to ErrorException | Marcus Boerger | 2004-07-25 | 1 | -6/+16 |
| | | | | | | constructor to allow overwriting automatically retrieved information. # It may be reasonable to delete the trace in case that feature is used. | ||||
* | Fix prototypes | Zeev Suraski | 2004-07-20 | 1 | -2/+2 |
| | |||||
* | Add descriptions | Zeev Suraski | 2004-07-20 | 1 | -0/+43 |
| | |||||
* | - Add new class ErrorException to encapsulate errors in exceptions | Marcus Boerger | 2004-07-15 | 1 | -15/+93 |
| | |||||
* | Revert; obviously I missed the function at the bottom of the file... | Wez Furlong | 2004-05-20 | 1 | -1/+1 |
| | |||||
* | Export this, so extensions may throw their own exception objects that | Wez Furlong | 2004-05-20 | 1 | -1/+1 |
| | | | | | they have already instantiated. | ||||
* | Classnames shall start with an uppercase character | Marcus Boerger | 2004-04-13 | 1 | -1/+1 |
| | |||||
* | - Add hook for exception handler (Derick) | Andi Gutmans | 2004-04-13 | 1 | -0/+5 |
| | |||||
* | - Fix crash in exception handling (zend_exception_error(...) and | Andi Gutmans | 2004-03-01 | 1 | -3/+1 |
| | | | | | zend_eval_string_ex() were buggy (Dmitry, Andi) | ||||
* | Improve error messages | foobar | 2004-02-25 | 1 | -3/+3 |
| | |||||
* | - Fixed bug #27391 (typo in Fatal Error message). | Derick Rethans | 2004-02-25 | 1 | -1/+1 |
| | |||||
* | Centralize exceptions code in zend_exceptions.[ch]. | Zeev Suraski | 2004-02-12 | 1 | -11/+42 |
| | | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon | ||||
* | Exceptions updates: | Zeev Suraski | 2004-02-12 | 1 | -27/+22 |
| | | | | | | | | - Enforce exceptions to be derived from class Exception. This allows users to perform catch-all. It's not yet complete, so don't get comfortable with it just yet :) Updates are coming soon. - Implement zend_throw_exception() using zend_throw_exception_ex() | ||||
* | Fix bug #27186 | Zeev Suraski | 2004-02-10 | 1 | -47/+61 |
| | |||||
* | Rewrote exception support. Fixes a few limitations and bugs in the old | Zeev Suraski | 2004-02-03 | 1 | -2/+2 |
| | | | | | | | | | | | implementation, and allows exceptions to 'fire' much earlier than before. Instructions on how to use the new mechanism will follow on internals@ shortly... Note - this (most probably) breaks the current implementation of set_exception_handler() | ||||
* | Fix internal access to exception properties | Marcus Boerger | 2004-01-22 | 1 | -14/+14 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | Do not show exception message if it's empty. | Andrei Zmievski | 2004-01-02 | 1 | -4/+10 |
| | | | | | # Is there a way to preserve the case of the exception class here? | ||||
* | Make default message look better. | Andrei Zmievski | 2003-12-31 | 1 | -1/+1 |
| | |||||
* | Show the exception message again after __toString() magic has been dropped. | Marcus Boerger | 2003-12-06 | 1 | -8/+12 |
| | |||||
* | Fixed crash demonstrated with ext/dom/tests/dom003.phpt test case. | Ilia Alshanetsky | 2003-12-05 | 1 | -3/+3 |
| | |||||
* | Check return value of exception::__tostring() | Marcus Boerger | 2003-11-30 | 1 | -39/+6 |
| | |||||
* | Make exception code more robust: | Marcus Boerger | 2003-11-29 | 1 | -9/+40 |
| | | | | | | | - Fix error in calculation of trace-string length - Allow to overload __strostring() and make it work for uncaught exceptions - Show exception thrown while displaying exceptions | ||||
* | This forces a better error message for non working clone calls. | Marcus Boerger | 2003-10-25 | 1 | -0/+1 |
| | |||||
* | And use things to throw an exception here | Marcus Boerger | 2003-10-25 | 1 | -2/+3 |
| | |||||
* | You shall not clone Exception instances | Marcus Boerger | 2003-10-25 | 1 | -0/+7 |
| | |||||
* | Impement userspace iterator interfaces and tests. See tests for details | Marcus Boerger | 2003-10-22 | 1 | -0/+2 |
| | | | | | on the names. | ||||
* | The string conversion method should be named __toString() | Marcus Boerger | 2003-10-22 | 1 | -5/+5 |
| | |||||
* | Added c-api for iterators | Marcus Boerger | 2003-10-17 | 1 | -0/+1 |
| | | | | | # After 4 Month work and endless discussions... | ||||
* | Fix cast function | Marcus Boerger | 2003-10-15 | 1 | -3/+3 |
| | |||||
* | Use studlyCaps in exception class | Marcus Boerger | 2003-09-17 | 1 | -14/+14 |
| | |||||
* | Use type instead of constant | Marcus Boerger | 2003-09-11 | 1 | -1/+1 |
| | |||||
* | Disallow to changing the backtrace | Marcus Boerger | 2003-09-06 | 1 | -1/+1 |
| | |||||
* | Provide string casting for exceptions by calling toString() | Marcus Boerger | 2003-09-05 | 1 | -2/+21 |
| | |||||
* | Fix handling of static properties initialized to arrays | Marcus Boerger | 2003-09-03 | 1 | -6/+6 |
| | |||||
* | Don't loose information if no parameters were shown. | Marcus Boerger | 2003-09-01 | 1 | -1/+4 |
| | | | | | # Noticed by Sebatian Bergmann | ||||
* | Show {main} and prevent showing empty stack traces | Marcus Boerger | 2003-09-01 | 1 | -6/+11 |
| | |||||
* | Clearify this | Marcus Boerger | 2003-09-01 | 1 | -2/+7 |
| | |||||
* | Revert what I think is an accidental commit by Marcus that slipped in at ↵ | Sebastian Bergmann | 2003-09-01 | 1 | -1/+1 |
| | | | | revision 1.23. Declaring getMessage() as final is a PITA, so I hope it will not come to that. |