21 lines
345 B
PHP
21 lines
345 B
PHP
<?php
|
|
|
|
/**
|
|
* pjdietz\WellRESTed\Exceptions\WellRESTedException
|
|
*
|
|
* @author PJ Dietz <pj@pjdietz.com>
|
|
* @copyright Copyright 2013 by PJ Dietz
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace pjdietz\WellRESTed\Exceptions;
|
|
|
|
use \Exception;
|
|
|
|
/**
|
|
* Top level class for custom exceptions thrown by Well RESTed.
|
|
*/
|
|
class WellRESTedException extends Exception
|
|
{
|
|
}
|