mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
34d725abe2
Нужно признать, что перенесена она так себе, но в будущем я обязательно это перепишу.
21 lines
593 B
PHP
21 lines
593 B
PHP
<?php
|
|
namespace api\components;
|
|
|
|
use api\modules\authserver\exceptions\AuthserverException;
|
|
use api\modules\session\exceptions\SessionServerException;
|
|
|
|
class ErrorHandler extends \yii\web\ErrorHandler {
|
|
|
|
public function convertExceptionToArray($exception) {
|
|
if ($exception instanceof AuthserverException || $exception instanceof SessionServerException) {
|
|
return [
|
|
'error' => $exception->getName(),
|
|
'errorMessage' => $exception->getMessage(),
|
|
];
|
|
}
|
|
|
|
return parent::convertExceptionToArray($exception);
|
|
}
|
|
|
|
}
|