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;
}
}