reliqarts/laravel-docweaver

View on GitHub
src/Contract/Exception.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace ReliqArts\Docweaver\Contract;

/**
 * Interface Exception.
 */
interface Exception
{
    public function withMessage(string $message): Exception;
}