Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/bson/lib/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/** * @public * @category Error * * `BSONError` objects are thrown when BSON ecounters an error. * * This is the parent class for all the other errors thrown by this library. */ export declare class BSONError extends Error { /** * @internal * The underlying algorithm for isBSONError may change to improve how strict it is * about determining if an input is a BSONError. But it must remain backwards compatible * with previous minors & patches of the current major version. */ protected get bsonError(): true; get name(): string; constructor(message: string); /** * @public * * All errors thrown from the BSON library inherit from `BSONError`. * This method can assist with determining if an error originates from the BSON library * even if it does not pass an `instanceof` check against this class' constructor. * * @param value - any javascript value that needs type checking */ static isBSONError(value: unknown): value is BSONError; } /** * @public * @category Error */ export declare class BSONVersionError extends BSONError { get name(): 'BSONVersionError'; constructor(); } /** * @public * @category Error * * An error generated when BSON functions encounter an unexpected input * or reaches an unexpected/invalid internal state * */ export declare class BSONRuntimeError extends BSONError { get name(): 'BSONRuntimeError'; constructor(message: string); } //# sourceMappingURL=error.d.ts.map