* @copyright Meritoo.pl */ class EmptyFilePathException extends \Exception { /** * Class constructor */ public function __construct() { parent::__construct('Path of the file is empty. Did you provide path of proper file?'); } }