blob: 6ecabae4d293c018573f4d8b00887e7d54d3acf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM;
/**
* Exception thrown when an ORM query unexpectedly does not return any results.
*/
class NoResultException extends UnexpectedResultException
{
public function __construct()
{
parent::__construct('No result was found for query although at least one row was expected.');
}
}
|