UNPKG
knx.js
Version:
latest (0.7.5)
0.7.5
0.7.4
0.7.2
0.7.1
0.7.0
0.6.12
0.6.11
0.6.10
0.6.8
0.6.7
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.0
0.3.3
0.3.2
0.3.1
0.3.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.0
0.1.4
0.1.3
0.1.2
0.0.1
KNXnetIP (KNX over IP) deriver for nodejs.
github.com/estbeetoo/knx.js
estbeetoo/knx.js
knx.js
/
src
/
ConnectionErrorException.js
9 lines
(8 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Created by aborovsky on 27.08.2015. */
function
ConnectionErrorException
(
msg
) {
Error
.
apply
(
this
,
arguments
); }
ConnectionErrorException
.
prototype
=
new
Error
();
module
.
exports
=
ConnectionErrorException
;