import { SystemException } from "./system.exception.js";
export class NullReferenceException extends SystemException {
constructor(message, options) {
super(message ?? "The specified reference is null or undefined.", options);
this.name = NullReferenceException.name;
}
}