src/SerializerError.php source

1 <?php
2
3 declare(strict_types=1);
4
5 namespace Serializor;
6
7 use RuntimeException;
8
9 /**
10 * Generic exception thrown by Serializor
11 *
12 * @package Serializor
13 */
14 class SerializerError extends RuntimeException {}
15