1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Exception;
6
7/**
8 * RuntimeException for the Serializer.
9 *
10 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
11 */
12class RuntimeException extends \RuntimeException implements Exception
13{
14}
15