tixfactory.exceptions
v0.0.1001
Published
TixFactory.Exceptions
Downloads
6
Readme
TixFactory.Exceptions
Introduction
TODO
Example
var tfe = require("tixfactory.exceptions");
var e1 = new tfe.exception("Hello, world!");
var e2 = new tfe.exception(123, e1);
console.log(e2.toString());
// 123
// "Hello, world!"