UNPKG

net-exceptions

Version:

Provides lightweight versions of the most important exceptions from Microsoft's .NET

17 lines (16 loc) 504 B
import { Exception } from "./Exception"; /** * The exception that is thrown when an I/O error occurs. */ export declare class IOException extends Exception { /** * Initializes a new instance of the `IOException` class. * * @param message * A message that describes the current exception. * * @param innerException * The Exception instance that caused the current exception. */ constructor(message?: string, innerException?: Exception); }