mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
15 lines
219 B
PHP
Executable File
15 lines
219 B
PHP
Executable File
<?php
|
|
|
|
namespace Http\Discovery;
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* An interface implemented by all discovery related exceptions.
|
|
*
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
*/
|
|
interface Exception extends Throwable
|
|
{
|
|
}
|