File:EventError.js
/**
* @module Learning
* @namespace springroll.pbskids
* @requires Core
*/
(function()
{
//Import class
var LearningError = include('springroll.pbskids.LearningError');
/**
* General errors when using the Learning Dispatcher
* @class EventError
* @extends springroll.LearningError
* @private
* @constructor
* @param {string} message The error message
* @param {int} eventCode The number of the event
*/
var EventError = function(message, eventCode, api)
{
LearningError.call(this, message);
/**
* The name of the property erroring on
* @property {int} eventCode
*/
this.eventCode = eventCode;
/**
* The name of the API method errored on
* @property {string} api
*/
this.api = api;
/**
* The definition of the API and all it's arguments
* @property {springroll.EventSignature} signature
*/
this.signature = null;
};
//Extend the Error class
var p = LearningError.extend(EventError);
/**
* To string override
* @method toString
* @return {string} The string representation of the error
*/
p.toString = function()
{
return this.message + " [eventCode: " + this.eventCode +
", api: '" + this.api + "']";
};
//Assign to namespace
namespace('springroll.pbskids').EventError = EventError;
}());