2017-09-24 23:32:21 -04:00
|
|
|
<?php
|
2017-11-16 20:51:03 -05:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-09-24 23:32:21 -04:00
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\REST\TinyTinyRSS;
|
|
|
|
|
|
|
|
class Exception extends \Exception {
|
|
|
|
protected $data = [];
|
2018-10-26 14:58:04 -04:00
|
|
|
|
2017-09-24 23:32:21 -04:00
|
|
|
public function __construct($msg = "UNSPECIFIED_ERROR", $data = [], $e = null) {
|
|
|
|
$this->data = $data;
|
|
|
|
parent::__construct($msg, 0, $e);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getData(): array {
|
2017-09-25 10:08:37 -04:00
|
|
|
$err = ['error' => $this->getMessage()];
|
2017-09-24 23:32:21 -04:00
|
|
|
return array_merge($err, $this->data, $err);
|
|
|
|
}
|
2017-09-28 10:16:24 -04:00
|
|
|
}
|