for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file contains the HttpException
*
* @copyright 2015 Vladimir Jimenez
* @license https://github.com/allejo/PhpSoda/blob/master/LICENSE.md MIT
*/
namespace allejo\Socrata\Exceptions;
* An exception thrown if a given dataset's resource ID is invalid
* @package allejo\Socrata\Exceptions
* @since 0.1.0
class InvalidResourceException extends \Exception
{
* Create an exception
* @param string $message The message of the exception
public function __construct ($message)
$this->message = $message;
}