happn-primus
Version:
Primus is a simple abstraction around real-time frameworks. It allows you to easily switch between different frameworks without any code changes.
54 lines (43 loc) • 1.17 kB
JavaScript
'use strict';
var util = require('util');
/**
* Generic Primus error.
*
* @constructor
* @param {String} message The reason for the error
* @param {EventEmitter} logger Optional EventEmitter to emit a `log` event on.
* @api public
*/
function PrimusError(message, logger) {
Error.call(this);
Error.captureStackTrace(this, this.constructor);
this.message = message;
this.name = this.constructor.name;
if (logger) {
logger.emit('log', 'error', this);
}
}
util.inherits(PrimusError, Error);
/**
* There was an error while parsing incoming or outgoing data.
*
* @param {String} message The reason for the error.
* @param {Spark} spark The spark that caused the error.
* @api public
*/
function ParserError(message, spark) {
Error.call(this);
Error.captureStackTrace(this, this.constructor);
this.message = message;
this.name = this.constructor.name;
if (spark) {
if (spark.listeners('error').length) spark.emit('error', this);
spark.primus.emit('log', 'error', this);
}
}
util.inherits(ParserError, Error);
//
// Expose our custom events.
//
exports.PrimusError = PrimusError;
exports.ParserError = ParserError;