mirror of
https://github.com/danog/Valinor.git
synced 2025-01-09 22:28:31 +01:00
17 lines
311 B
PHP
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';
|
|
}
|
|
}
|