mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-25 23:10:57 +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
|
||
|
{
|
||
|
}
|