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

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
{
}