UNPKG

@contextjs/system

Version:
8 lines (7 loc) 306 B
import { ArgumentException } from "./argument.exception.js"; export class ArgumentOutOfRangeException extends ArgumentException { constructor(message, options) { super(message ?? "The specified argument is out of range.", options); this.name = ArgumentOutOfRangeException.name; } }