2017-03-08 14:55:16 +00:00
|
|
|
<?php
|
|
|
|
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 {
|
|
|
|
public function exceptionBuild() {
|
2017-08-29 14:50:31 +00:00
|
|
|
switch ($this->db->lastErrorCode()) {
|
2017-03-08 14:55:16 +00:00
|
|
|
case self::SQLITE_BUSY:
|
2017-03-08 17:29:22 +00:00
|
|
|
return [ExceptionTimeout::class, 'general', $this->db->lastErrorMsg()];
|
2017-03-08 14:55:16 +00:00
|
|
|
case self::SQLITE_CONSTRAINT:
|
2017-09-26 20:45:41 +00:00
|
|
|
return [ExceptionInput::class, 'engineConstraintViolation', $this->db->lastErrorMsg()];
|
2017-03-08 14:55:16 +00:00
|
|
|
case self::SQLITE_MISMATCH:
|
2017-09-26 20:45:41 +00:00
|
|
|
return [ExceptionInput::class, 'engineTypeViolation', $this->db->lastErrorMsg()];
|
2017-03-08 14:55:16 +00:00
|
|
|
default:
|
|
|
|
return [Exception::class, 'engineErrorGeneral', $this->db->lastErrorMsg()];
|
|
|
|
}
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|