You are here

public function MarkdownFileNotExistsException::__construct in Markdown 8.2

File

src/Exception/MarkdownFileNotExistsException.php, line 16

Class

MarkdownFileNotExistsException
Exception thrown when a file is expected to exist but does not.

Namespace

Drupal\markdown\Exception

Code

public function __construct($file, $code = 0, $previous = NULL) {
  parent::__construct(sprintf('Markdown cannot parse the file: %s', $file), $code, $previous);
}