mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-11 23:31:03 +01:00
12 lines
189 B
PHP
12 lines
189 B
PHP
|
<?php
|
||
|
|
||
|
namespace RESTful\Exceptions;
|
||
|
|
||
|
/**
|
||
|
* Indicates that a query unexpectedly returned multiple results when at most
|
||
|
* one was expected.
|
||
|
*/
|
||
|
class MultipleResultsFound extends Base
|
||
|
{
|
||
|
}
|