mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-02 02:40:58 +01:00
11 lines
143 B
PHP
11 lines
143 B
PHP
|
<?php
|
||
|
|
||
|
namespace RESTful\Exceptions;
|
||
|
|
||
|
/**
|
||
|
* Indicates that a query unexpectedly returned no results.
|
||
|
*/
|
||
|
class NoResultFound extends Base
|
||
|
{
|
||
|
}
|