Ouzo\View::verifyExists PHP Method

verifyExists() private method

private verifyExists ( $viewPath, $viewName )
    private function verifyExists($viewPath, $viewName)
    {
        if (!Files::exists($viewPath)) {
            throw new ViewException('No view found [' . $viewName . '] at: ' . $viewPath);
        }
    }