1: <?php
2: namespace Ctct\Exceptions;
3:
4: use Exception;
5:
6: /**
7: * Exception thrown if there is an illegal argument passed to a particular method
8: *
9: * @package exceptions
10: * @author djellesma
11: */
12: class IllegalArgumentException extends Exception
13: {
14: }
15: