php-kilo/src/Terminal/TermiosException.php
Timothy Warren 998102816e
Some checks failed
timw4mail/php-kilo/pipeline/head There was a failure building this commit
Use c stdlib function to set up raw mode
2023-10-10 13:02:05 -04:00

15 lines
331 B
PHP

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