Newer
Older
framework / system / Database / Exceptions / ExceptionInterface.php
@Jim Parry Jim Parry on 1 Dec 2018 312 bytes Release 4.0.0-alpha.3
<?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
{

}