Changeset 326
- Timestamp:
- 03/02/07 17:03:00 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/stubExceptionHandler.php
r325 r326 2 2 /** 3 3 * the default exception handler 4 * 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> 6 6 * @package stubbles … … 13 13 /** 14 14 * the default exception handler 15 * 15 * 16 16 * @package stubbles 17 17 * @subpackage util … … 26 26 set_exception_handler(array(__CLASS__, 'handle')); 27 27 } 28 28 29 29 /** 30 30 * handles the exception … … 43 43 $response->send(); 44 44 } else { 45 header('HTTP/1.0 500 Intern etServer Error');45 header('HTTP/1.0 500 Internal Server Error'); 46 46 } 47 47 } 48 48 49 49 /** 50 50 * does the preprocessing stuff
