php-kilo/src/Terminal/TermiosException.php

15 lines
331 B
PHP
Raw Normal View History

2019-11-19 15:57:51 -05:00
<?php declare(strict_types=1);
namespace Aviat\Kilo\Terminal;
2019-11-19 15:57:51 -05:00
use Throwable;
class TermiosException extends \UnexpectedValueException {
public function __construct(
string $message = 'Failed to apply terminal settings',
int $code = 0,
Throwable $previous = NULL)
2019-11-19 15:57:51 -05:00
{
parent::__construct($message, $code, $previous);
}
}