-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1088 from wagnert/master
Fix and optimize error handling in console execution and request hand…
- Loading branch information
Showing
10 changed files
with
459 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
|
||
/** | ||
* AppserverIo\Appserver\Core\Utilities\Error | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Open Software License (OSL 3.0) | ||
* that is available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/osl-3.0.php | ||
* | ||
* PHP version 5 | ||
* | ||
* @author Tim Wagner <[email protected]> | ||
* @copyright 2015 TechDivision GmbH <[email protected]> | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
* @link https://github.com/appserver-io/appserver | ||
* @link http://www.appserver.io | ||
*/ | ||
|
||
namespace AppserverIo\Appserver\Core\Utilities; | ||
|
||
/** | ||
* Wrapper for an error triggered by PHP's default error handling. | ||
* | ||
* @author Tim Wagner <[email protected]> | ||
* @copyright 2015 TechDivision GmbH <[email protected]> | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
* @link https://github.com/appserver-io/appserver | ||
* @link http://www.appserver.io | ||
*/ | ||
class Error implements ErrorInterface | ||
{ | ||
|
||
/** | ||
* The error type. | ||
* | ||
* @var integer | ||
*/ | ||
protected $type; | ||
|
||
/** | ||
* The error message. | ||
* | ||
* @var integer | ||
*/ | ||
protected $message; | ||
|
||
/** | ||
* The name of the file where the error has been triggered. | ||
* | ||
* @var integer | ||
*/ | ||
protected $file; | ||
|
||
/** | ||
* The line in the file where the error has been triggered. | ||
* | ||
* @var integer | ||
*/ | ||
protected $line; | ||
|
||
/** | ||
* Initializes the error with the passed values. | ||
* | ||
* @param integer $type The error type | ||
* @param string $message The error message | ||
* @param string $file The name of the file where the error has been triggered | ||
* @param integer $line The line in the file where the error has been triggered | ||
*/ | ||
public function __construct($type, $message, $file, $line) | ||
{ | ||
$this->type = $type; | ||
$this->message = $message; | ||
$this->file = $file; | ||
$this->line = $line; | ||
} | ||
|
||
/** | ||
* Return's the error type. | ||
* | ||
* @return integer The error type | ||
*/ | ||
public function getType() | ||
{ | ||
return $this->type; | ||
} | ||
|
||
/** | ||
* Return's the error message. | ||
* | ||
* @return integer The error message | ||
*/ | ||
public function getMessage() | ||
{ | ||
return $this->message; | ||
} | ||
|
||
/** | ||
* Return's the name of the file where the error has been triggered. | ||
* | ||
* @return integer The filename | ||
*/ | ||
public function getFile() | ||
{ | ||
return $this->file; | ||
} | ||
|
||
/** | ||
* Return's the line in the file where the error has been triggered. | ||
* | ||
* @return integer The line number | ||
*/ | ||
public function getLine() | ||
{ | ||
return $this->line; | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
src/AppserverIo/Appserver/Core/Utilities/ErrorInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
|
||
/** | ||
* AppserverIo\Appserver\Core\Utilities\ErrorInterface | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Open Software License (OSL 3.0) | ||
* that is available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/osl-3.0.php | ||
* | ||
* PHP version 5 | ||
* | ||
* @author Tim Wagner <[email protected]> | ||
* @copyright 2015 TechDivision GmbH <[email protected]> | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
* @link https://github.com/appserver-io/appserver | ||
* @link http://www.appserver.io | ||
*/ | ||
|
||
namespace AppserverIo\Appserver\Core\Utilities; | ||
|
||
/** | ||
* Interface for wrapper implementations of errors triggered by PHP's default error handling. | ||
* | ||
* @author Tim Wagner <[email protected]> | ||
* @copyright 2015 TechDivision GmbH <[email protected]> | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
* @link https://github.com/appserver-io/appserver | ||
* @link http://www.appserver.io | ||
*/ | ||
interface ErrorInterface | ||
{ | ||
|
||
/** | ||
* Return's the error type. | ||
* | ||
* @return integer The error type | ||
*/ | ||
public function getType(); | ||
|
||
/** | ||
* Return's the error message. | ||
* | ||
* @return integer The error message | ||
*/ | ||
public function getMessage(); | ||
|
||
/** | ||
* Return's the name of the file where the error has been triggered. | ||
* | ||
* @return integer The filename | ||
*/ | ||
public function getFile(); | ||
|
||
/** | ||
* Return's the line in the file where the error has been triggered. | ||
* | ||
* @return integer The line number | ||
*/ | ||
public function getLine(); | ||
} |
Oops, something went wrong.