Files
cattr/app/Exceptions/Interfaces/InfoExtendedException.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

17 lines
224 B
PHP

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