11 lines
143 B
PHP
Executable File
11 lines
143 B
PHP
Executable File
<?php
|
|
|
|
namespace RESTful\Exceptions;
|
|
|
|
/**
|
|
* Indicates that a query unexpectedly returned no results.
|
|
*/
|
|
class NoResultFound extends Base
|
|
{
|
|
}
|