Valinor/tests/Fake/Mapper/Tree/Message/FakeErrorMessage.php
Romain Canon 396f64a524 feat: initial release
🎉
2021-11-28 18:21:56 +01:00

17 lines
311 B
PHP

<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Tests\Fake\Mapper\Tree\Message;
use CuyZ\Valinor\Mapper\Tree\Message\Message;
use Exception;
final class FakeErrorMessage extends Exception implements Message
{
public function __toString(): string
{
return 'some error message';
}
}