1<?php 2 3namespace Elastica\Exception; 4 5/** 6 * Invalid exception. 7 * 8 * @author Nicolas Ruflin <spam@ruflin.com> 9 */ 10class InvalidException extends \InvalidArgumentException implements ExceptionInterface 11{ 12} 13