13 lines
243 B
PHP
13 lines
243 B
PHP
<?php namespace CodeIgniter\Exceptions;
|
|
|
|
/**
|
|
* Provides a domain-level interface for broad capture
|
|
* of all framework-related exceptions.
|
|
*
|
|
* catch (\CodeIgniter\Exceptions\ExceptionInterface) { ... }
|
|
*/
|
|
|
|
interface ExceptionInterface
|
|
{
|
|
}
|