import { SystemException } from "./system.exception.js";
export class ArgumentException extends SystemException {
constructor(message, options) {
super(message ?? "The specified argument is invalid.", options);
this.name = ArgumentException.name;
}
}