17 lines
224 B
PHP
17 lines
224 B
PHP
<?php
|
|
|
|
namespace App\Exceptions\Interfaces;
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* Interface ReasonableException
|
|
*/
|
|
interface InfoExtendedException extends Throwable
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getInfo();
|
|
}
|