* @copyright Meritoo */ class EmptyFilePathException extends \Exception { /** * Creates exception */ public static function create() { return new static('Path of the file is empty. Did you provide path of proper file?'); } }