Files
react-inotify/src/InotifyException.php
Christopher Vagnetoft b8a0dbf2bf Code cleanup and misc fixes
* Properly implement exceptions.
* Allow passing custom eventloop and poll interval to constructor.
* Fix some typos, cleanup code.
2026-01-09 15:49:08 +01:00

10 lines
108 B
PHP

<?php
namespace NoccyLabs\React\Inotify;
use Exception;
class InotifyException extends Exception
{
}