-
Notifications
You must be signed in to change notification settings - Fork 4
/
fdsErrors.js
111 lines (102 loc) · 3.45 KB
/
fdsErrors.js
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* Copyright 2016 Telefónica Investigación y Desarrollo, S.A.U
*
* This file is part of the Short Time Historic (STH) component
*
* STH is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* STH is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with STH.
* If not, see http://www.gnu.org/licenses/.
*
* For those usages not covered by the GNU Affero General Public License
* please contact with: [german.torodelvalle@telefonica.com]
*/
'use strict';
/**
* Invalid interpolation specification error
* @param {String} message Human-readable description of the error
*/
function InvalidInterpolationSpec(message) {
Error.call(this, message);
this.name = 'InvalidInterpolationSpec';
this.message = message;
}
InvalidInterpolationSpec.prototype = Object.create(Error.prototype);
/**
* NGSI version not supported error
* @param {String} message Human-readable description of the error
*/
function NGSIVersionNotSupported(message) {
Error.call(this, message);
this.name = 'NGSIVersionNotSupported';
this.message = message;
}
NGSIVersionNotSupported.prototype = Object.create(Error.prototype);
/**
* Package not imported error
* @param {String} message Human-readable description of the error
*/
function PackageNotImported(message) {
Error.call(this, message);
this.name = 'PackageNotImported';
this.message = message;
}
PackageNotImported.prototype = Object.create(Error.prototype);
/**
* Protocol not supported error
* @param {String} message Human-readable description of the error
*/
function ProtocolNotSupported(message) {
Error.call(this, message);
this.name = 'ProtocolNotSupported';
this.message = message;
}
ProtocolNotSupported.prototype = Object.create(Error.prototype);
/**
* Not valid simulation configuration error
* @param {String} message Human-readable description of the error
*/
function SimulationConfigurationNotValid(message) {
Error.call(this);
this.name = 'SimulationConfigurationNotValid';
this.message = message;
}
SimulationConfigurationNotValid.prototype = Object.create(Error.prototype);
/**
* Token not available error
* @param {String} message Human-readable description of the error
*/
function TokenNotAvailable(message) {
Error.call(this, message);
this.name = 'TokenNotAvailable';
this.message = message;
}
TokenNotAvailable.prototype = Object.create(Error.prototype);
/**
* Some error ocurred during a value resolution
* @param {String} message Human-readable description of the error
*/
function ValueResolutionError(message) {
Error.call(this, message);
this.name = 'ValueResolutionError';
this.message = message;
}
ValueResolutionError.prototype = Object.create(Error.prototype);
module.exports = {
InvalidInterpolationSpec: InvalidInterpolationSpec,
NGSIVersionNotSupported: NGSIVersionNotSupported,
PackageNotImported: PackageNotImported,
ProtocolNotSupported: ProtocolNotSupported,
SimulationConfigurationNotValid: SimulationConfigurationNotValid,
TokenNotAvailable: TokenNotAvailable,
ValueResolutionError: ValueResolutionError
};