UNPKG

stomp

Version:

Implementation of the STOMP protocol in node.js

9 lines (7 loc) 195 B
var QueueEmpty = exports.QueueEmpty = function() { this.name = "QueueEmpty"; this.message = "Queue is Empty"; }; QueueEmpty.prototype.toString = function() { return this.message; };