11 lines
184 B
PHP
11 lines
184 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Protocol\File;
|
||
|
|
||
|
use RuntimeException;
|
||
|
|
||
|
/**
|
||
|
* Exception thrown if a file reader specific error occurs
|
||
|
*/
|
||
|
class FileReaderException extends RuntimeException {}
|