norse-blue/php-extensible-objects

View on GitHub
src/Exceptions/ClassNotExtensionMethodException.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 does not implement the ExtensionMethod contract.
 */
final class ClassNotExtensionMethodException extends RuntimeException
{
}