nutgram/nutgram

View on GitHub
src/Exception/StatusFinalizedException.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace SergiX44\Nutgram\Exception;

use Exception;
use Throwable;

class StatusFinalizedException extends Exception
{
    public function __construct(
        string $message = 'No further handlers can be registered after finalisation.',
        int $code = 0,
        ?Throwable $previous = null
    ) {
        parent::__construct($message, $code, $previous);
    }
}