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