phpvms/app/Exceptions/Converters/GenericException.php
2019-08-22 12:26:46 -04:00

53 lines
1.1 KiB
PHP

<?php
namespace App\Exceptions\Converters;
use App\Exceptions\HttpException;
use Exception;
class GenericException extends HttpException
{
private $exception;
public function __construct(Exception $exception)
{
$this->exception = $exception;
parent::__construct(
503,
$exception->getMessage()
);
}
/**
* Return the RFC 7807 error type (without the URL root)
*/
public function getErrorType(): string
{
return 'internal-error';
}
/**
* Get the detailed error string
*/
public function getErrorDetails(): string
{
return $this->getMessage();
}
/**
* Return an array with the error details, merged with the RFC7807 response
*/
public function getErrorMetadata(): array
{
$metadata = [];
$metadata['original_exception'] = get_class($this->exception);
// Only add trace if in dev
if (config('app.env') === 'dev') {
$metadata['trace'] = $this->exception->getTrace()[0];
}
return $metadata;
}
}