Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/tsc/dts/lib.deno.ns.d.ts>Deno.errors.PermissionDenied

A modern runtime for JavaScript and TypeScript.
Latest
class Deno.errors.PermissionDenied
extends Error
import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { PermissionDenied } = Deno.errors;

Raised when the underlying operating system indicates the current user which the Deno process is running under does not have the appropriate permissions to a file or resource.

Before Deno 2.0, this error was raised when the user did not provide required --allow-* flag. As of Deno 2.0, that case is now handled by the NotCapable error.