@manuth/exceptions
Version:
Provides lightweight versions of the most important exceptions from Microsoft's .NET
19 lines • 682 B
JavaScript
import { Exception } from "./Exception.js";
/**
* The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error.
*/
export class UnauthorizedAccessException extends Exception {
/**
* Initializes a new instance of the {@linkcode UnauthorizedAccessException} class.
*
* @param message
* A message that describes the current exception.
*
* @param innerException
* The Exception instance that caused the current exception.
*/
constructor(message, innerException) {
super(message, innerException);
}
}
//# sourceMappingURL=UnauthorizedAccessException.js.map