norse-blue/php-extensible-objects

View on GitHub
src/Exceptions/ExtensionNotCallableException.php

Summary

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

declare(strict_types=1);

namespace NorseBlue\ExtensibleObjects\Exceptions;

use RuntimeException;

/**
 * Exception thrown when trying to register an extension method that is not callable.
 */
final class ExtensionNotCallableException extends RuntimeException
{
}