Files
rpsls-game/system/Database/Exceptions/ExceptionInterface.php
2019-12-02 14:56:47 -06:00

14 lines
312 B
PHP

<?php namespace CodeIgniter\Database\Exceptions;
/**
* Provides a domain-level interface for broad capture
* of all database-related exceptions.
*
* catch (\CodeIgniter\Database\Exceptions\ExceptionInterface) { ... }
*/
interface ExceptionInterface extends \CodeIgniter\Exceptions\ExceptionInterface
{
}