Files
simple-php-router/src/Pecee/Exceptions/InvalidArgumentException.php
T
Simon Sessingo a25be983b8 Development
- Renamed Uri class to Url.
- Renamed setUri and getUri to setUrl and getUrl.
- Added custom Exceptions and ensured that router only throws HttpExceptions.
- Added isAjax method to Request class.
- Added better phpDocs.
- Other minor optimisations.
2018-02-26 23:21:26 +01:00

6 lines
104 B
PHP

<?php
namespace Pecee\Exceptions;
class InvalidArgumentException extends \InvalidArgumentException {
}