Files
starface-outlook-sync-addin/node_modules/@jsonjoy.com/json-pack/lib/nfs/v4/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.Nfsv4EncodingError = exports.Nfsv4DecodingError = void 0;
class Nfsv4DecodingError extends Error {
constructor(message) {
super(message ? 'NFSv4_DECODING: ' + message : 'NFSv4_DECODING');
}
}
exports.Nfsv4DecodingError = Nfsv4DecodingError;
class Nfsv4EncodingError extends Error {
constructor(message) {
super(message ? 'NFSv4_ENCODING: ' + message : 'NFSv4_ENCODING');
}
}
exports.Nfsv4EncodingError = Nfsv4EncodingError;
//# sourceMappingURL=errors.js.map