mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 12:30:56 +01:00
11 lines
122 B
PHP
11 lines
122 B
PHP
|
<?php
|
||
|
|
||
|
namespace RESTful\Exceptions;
|
||
|
|
||
|
/**
|
||
|
* Base class for all RESTful\Exceptions.
|
||
|
*/
|
||
|
class Base extends \Exception
|
||
|
{
|
||
|
}
|