Issues (1574)

src/Exception/NotFoundException.php (6 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Exception;
4
5
use RuntimeException;
6
7
/**
8
 * Class NotFoundException
9
 *
10
 * Thrown when the requested data is not found or an empty list is returned.
11
 */
0 ignored issues
show
Missing @category tag in class comment
Loading history...
Missing @package tag in class comment
Loading history...
Missing @author tag in class comment
Loading history...
Missing @license tag in class comment
Loading history...
Missing @link tag in class comment
Loading history...
12
class NotFoundException extends RuntimeException implements Exception
13
{
14
15
}
16