Issues (1574)

src/Exception/UnavailableException.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 UnavailableException
9
 *
10
 * Generic exception thrown when the service did not respond (correctly).
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 UnavailableException extends RuntimeException implements Exception
13
{
14
15
}
16