mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Added custom API exception class.
This commit is contained in:
parent
512d56b7ea
commit
425c661631
1 changed files with 54 additions and 0 deletions
54
src/engine/Api/V1/Exception.php
Normal file
54
src/engine/Api/V1/Exception.php
Normal file
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Easy!Appointments - Open Source Web Scheduler
|
||||
*
|
||||
* @package EasyAppointments
|
||||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||||
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
||||
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
||||
* @link http://easyappointments.org
|
||||
* @since v1.2.0
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
namespace EA\Engine\Api\V1;
|
||||
|
||||
/**
|
||||
* API v1 Exception Class
|
||||
*
|
||||
* This exception variation will hold the information needed for exception handling in the API.
|
||||
*/
|
||||
class Exception extends \Exception {
|
||||
/**
|
||||
* Header Description
|
||||
*
|
||||
* e.g. 'Unauthorized'
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $header;
|
||||
|
||||
/**
|
||||
* Class Constructor
|
||||
*
|
||||
* @link http://php.net/manual/en/class.exception.php
|
||||
*
|
||||
* @param string $message
|
||||
* @param int $code
|
||||
* @param string $header
|
||||
* @param \Exception|null $previous
|
||||
*/
|
||||
public function __construct($message = null, $code = 500, $header = '', \Exception $previous = null) {
|
||||
parent::__construct($message, $code, $previous);
|
||||
$this->header = $header;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the header string.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getHeader() {
|
||||
return $this->header;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue