mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
a3e2da1d36
- Fixes #46 - Some exception messages are tentative pending testing
23 lines
No EOL
829 B
PHP
23 lines
No EOL
829 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\NewsSync\Db\SQLite3;
|
|
use JKingWeb\NewsSync\Db\Exception;
|
|
use JKingWeb\NewsSync\Db\ExceptionInput;
|
|
use JKingWeb\NewsSync\Db\ExceptionTimeout;
|
|
|
|
|
|
trait ExceptionBuilder {
|
|
|
|
public function exceptionBuild() {
|
|
switch($this->db->lastErrorCode()) {
|
|
case self::SQLITE_BUSY:
|
|
return [ExceptionTimeout::class, 'general', $this->db->lastErrorMsg()];
|
|
case self::SQLITE_CONSTRAINT:
|
|
return [ExceptionInput::class, 'constraintViolation', $this->db->lastErrorMsg()];
|
|
case self::SQLITE_MISMATCH:
|
|
return [ExceptionInput::class, 'typeViolation', $this->db->lastErrorMsg()];
|
|
default:
|
|
return [Exception::class, 'engineErrorGeneral', $this->db->lastErrorMsg()];
|
|
}
|
|
}
|
|
} |