Source: _errors.js


/** 
 * @module _errors
 * @description to be used as constants for errors that would be thrown by 
 * DEBUG or USING build parameter checks.  These should not be built when 
 * compiling in FINAL mode.  The actual values are strings to ease troubleshooting.
 */

/** 
 * @constant _events:INVALID_METHOD
 */

/** 
 * @constant _events:INVALID_URL
 */

module.exports = { 
	INVALID_METHOD:"ERROR: INVALID METHOD",
	INVALID_URL:"ERROR: INVALID URL"
}