Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
TermiosException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
1 | <?php declare(strict_types=1); |
2 | |
3 | namespace Aviat\Kilo; |
4 | |
5 | use Throwable; |
6 | |
7 | class TermiosException extends \UnexpectedValueException { |
8 | public function __construct($message = 'Failed to apply terminal settings', $code = 0, Throwable $previous = NULL) |
9 | { |
10 | parent::__construct($message, $code, $previous); |
11 | } |
12 | } |