2016-08-04 14:55:37 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Ion
|
|
|
|
*
|
|
|
|
* Building blocks for web development
|
|
|
|
*
|
|
|
|
* @package Ion
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2015 - 2016
|
|
|
|
* @license MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\Ion;
|
|
|
|
|
2016-08-05 16:20:26 -04:00
|
|
|
/**
|
|
|
|
* Exceptions thrown by the Json class
|
|
|
|
*/
|
2016-08-04 14:55:37 -04:00
|
|
|
class JsonException extends \InvalidArgumentException {
|
|
|
|
|
|
|
|
}
|
|
|
|
// End of JsonException.php
|