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