@manuth/exceptions
Version:
Provides lightweight versions of the most important exceptions from Microsoft's .NET
19 lines • 558 B
JavaScript
import { Exception } from "./Exception.js";
/**
* The exception that is thrown when an I/O error occurs.
*/
export class IOException extends Exception {
/**
* Initializes a new instance of the {@linkcode IOException} 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=IOException.js.map