File size: 1,145 Bytes
f316cce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ServiceNodeResourceDrainError = exports.ServiceCrashedError = exports.SecurityCompromiseError = exports.ServiceBadAttemptError = void 0;
// HF-compatible stub for error handling
class ServiceBadAttemptError extends Error {
    constructor(message) {
        super(message);
        this.name = 'ServiceBadAttemptError';
    }
}
exports.ServiceBadAttemptError = ServiceBadAttemptError;
class SecurityCompromiseError extends Error {
    constructor(message) {
        super(message);
        this.name = 'SecurityCompromiseError';
    }
}
exports.SecurityCompromiseError = SecurityCompromiseError;
class ServiceCrashedError extends Error {
    constructor(message) {
        super(message);
        this.name = 'ServiceCrashedError';
    }
}
exports.ServiceCrashedError = ServiceCrashedError;
class ServiceNodeResourceDrainError extends Error {
    constructor(message) {
        super(message);
        this.name = 'ServiceNodeResourceDrainError';
    }
}
exports.ServiceNodeResourceDrainError = ServiceNodeResourceDrainError;
//# sourceMappingURL=errors.js.map