Files
starface-outlook-sync-addin/node_modules/@jsonjoy.com/json-pack/lib/nfs/v3/errors.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

16 lines
575 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Nfsv3EncodingError = exports.Nfsv3DecodingError = void 0;
class Nfsv3DecodingError extends Error {
constructor(message) {
super(message ? 'NFSv3_DECODING: ' + message : 'NFSv3_DECODING');
}
}
exports.Nfsv3DecodingError = Nfsv3DecodingError;
class Nfsv3EncodingError extends Error {
constructor(message) {
super(message ? 'NFSv3_ENCODING: ' + message : 'NFSv3_ENCODING');
}
}
exports.Nfsv3EncodingError = Nfsv3EncodingError;
//# sourceMappingURL=errors.js.map