for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Napp\Core\Api\Exceptions\Exceptions;
use Exception as BaseException;
/**
* Class Exception.
*/
class Exception extends BaseException
{
* The suggested HTTP response code.
*
* @var int
public $responseCode;
* The suggested status code.
public $statusCode;
* The suggested status message.
* @var string
public $statusMessage;
* @return int
public function getResponseCode()
return $this->responseCode;
}
public function getStatusCode()
return $this->statusCode;
* @return string
public function getStatusMessage()
return $this->statusMessage;