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