- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
$exceptionClass = '\yii\db\Exception';
foreach ($this->exceptionMap as $error => $class) {
if (strpos($e->getMessage(), $error) !== false) {
$exceptionClass = $class;
}
}
...
return new $exceptionClass($message, $errorInfo, (int) $e->getCode(), $e);
На мой взгляд, весь yii сюда можно закидывать)
Ну не знаю, может и говно, но в Yii такого точно нет.
http://govnokod.ru/20429