X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fclasses%2Fexceptions%2Fclass_FrameworkException.php;h=8862e934b8126808d4dbb340b1ec5c333eb55bc5;hb=5203f9bd014ad46fbc7ee54e7223dcd46e14e3b4;hp=b3d3f42b04bb0d851df87aad67002664fe818758;hpb=0cd57c3885f00ad77fc599e53ed2f2d5e7ac267f;p=core.git diff --git a/inc/classes/exceptions/class_FrameworkException.php b/inc/classes/exceptions/class_FrameworkException.php index b3d3f42b..8862e934 100644 --- a/inc/classes/exceptions/class_FrameworkException.php +++ b/inc/classes/exceptions/class_FrameworkException.php @@ -4,11 +4,11 @@ * remove the "abstract" key-word. Better you make your own exception and * attach a dedicated message to it. * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -42,6 +42,9 @@ abstract class FrameworkException extends ReflectionException { * @return void */ public function __construct ($message, $code = 0) { + // Make sure everything is assigned properly + parent::__construct($message, $code); + // Extract backtrace $this->saveBackTrace(); @@ -61,11 +64,9 @@ abstract class FrameworkException extends ReflectionException { // End here exit(); } // END - if - // Make sure everything is assigned properly - parent::__construct($message, $code); - // Log it away if DEBUG_ALL is set - if (defined('DEBUG_ALL')) { + // Should we log exceptions? (bad implementation) + if (defined('LOG_EXCEPTIONS')) { // Log the error error_log(sprintf("[%s:] %s (%s)", $this->__toString(), @@ -113,11 +114,11 @@ abstract class FrameworkException extends ReflectionException { $dbgMsg = "
\nDebug backtrace begin:
\n"; foreach ($dbgTrace as $dbgIndex => $dbgInfo) { // No info by default - $info = "NULL"; + $info = 'NULL'; // Are there arguments? if ((isset($dbgInfo['args'])) && (is_array($dbgInfo['args'])) && (isset($dbgInfo['args'][0]))) { - //* DEBUG: */ echo $dbgIndex.":
".htmlentities(print_r($dbgInfo['args'], true))."
"; + //* DEBUG: */ echo $dbgIndex.":
".htmlentities(print_r($dbgInfo['args'], TRUE))."
"; $info = ''; foreach ($dbgInfo['args'] as $debug) { // Add only non-array elements @@ -131,18 +132,18 @@ abstract class FrameworkException extends ReflectionException { } // END - if // Prepare argument infos - $info = "{$info}"; + $info = '' . $info . ''; // File detection - $file = "Unknown file"; + $file = 'Unknown file'; if (isset($dbgInfo['file'])) { $file = basename($dbgInfo['file']); } // END - if // Line detection - $line = "Unknown line"; + $line = 'Unknown line'; if (isset($dbgInfo['line'])) { - $line = "line {$dbgInfo['line']}"; + $line = 'line ' . $dbgInfo['line']; } // END - if // The message @@ -171,7 +172,7 @@ abstract class FrameworkException extends ReflectionException { * @param $code Integer code to encode in hex * @return $hexCode The exception code in hex-decimal format */ - public final function getHexCode ($code = null) { + public final function getHexCode ($code = NULL) { // Get the decimal code if (is_null($code)) $code = $this->getCode();