cattr-app/server-application

View on GitHub
app/Exceptions/Interfaces/InfoExtendedException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Exceptions\Interfaces;

use Throwable;

/**
 * Interface ReasonableException
 */
interface InfoExtendedException extends Throwable
{
    /**
     * @return mixed
     */
    public function getInfo();
}