@berish/rfp
Version:
Binary secure transport organization protocol for peer communication using function fingerprints
12 lines • 444 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PeerPathNotFoundError = void 0;
class PeerPathNotFoundError extends Error {
constructor() {
super('Path in current peer not found');
this.name = 'PeerPathNotFoundError';
this.message = 'Path in current peer not found';
}
}
exports.PeerPathNotFoundError = PeerPathNotFoundError;
//# sourceMappingURL=peerPathNotFoundError.js.map