UNPKG
stomp
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Implementation of the STOMP protocol in node.js
github.com/benjaminws/stomp-js
benjaminws/stomp-js
stomp
/
lib
/
stomp-exceptions.js
9 lines
(7 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
QueueEmpty
=
exports
.
QueueEmpty
=
function
(
) {
this
.
name
=
"QueueEmpty"
;
this
.
message
=
"Queue is Empty"
; };
QueueEmpty
.
prototype
.
toString
=
function
(
) {
return
this
.
message
; };