lib: add FileReaderException for file reader specific errors

refs #6722
This commit is contained in:
Alexander Klimov 2014-07-21 14:11:08 +02:00
parent 6df7be7ee5
commit c5ecbf250d
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<?php
namespace Icinga\Protocol\File;
use RuntimeException;
/**
* Exception thrown if a file reader specific error occurs
*/
class FileReaderException extends RuntimeException {}