2017-03-08 14:55:16 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-03-08 14:55:16 +00:00
|
|
|
declare(strict_types=1);
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse\Db\SQLite3;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-03-28 04:12:12 +00:00
|
|
|
use JKingWeb\Arsse\Db\Exception;
|
|
|
|
use JKingWeb\Arsse\Db\ExceptionInput;
|
|
|
|
use JKingWeb\Arsse\Db\ExceptionTimeout;
|
2017-03-08 14:55:16 +00:00
|
|
|
|
|
|
|
trait ExceptionBuilder {
|
2019-01-11 00:01:32 +00:00
|
|
|
protected function buildException(): array {
|
|
|
|
return self::buildEngineException($this->db->lastErrorCode(), $this->db->lastErrorMsg());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function buildEngineException($code, string $msg): array {
|
|
|
|
switch ($code) {
|
|
|
|
case Driver::SQLITE_BUSY:
|
|
|
|
return [ExceptionTimeout::class, 'general', $msg];
|
|
|
|
case Driver::SQLITE_CONSTRAINT:
|
|
|
|
return [ExceptionInput::class, 'engineConstraintViolation', $msg];
|
|
|
|
case Driver::SQLITE_MISMATCH:
|
|
|
|
return [ExceptionInput::class, 'engineTypeViolation', $msg];
|
2017-03-08 14:55:16 +00:00
|
|
|
default:
|
2019-01-11 00:01:32 +00:00
|
|
|
return [Exception::class, 'engineErrorGeneral', $msg];
|
2017-03-08 14:55:16 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|