This commit is contained in:
Mike Hamburg
2011-04-19 13:13:44 -07:00
4 changed files with 17 additions and 16 deletions

View File

@@ -56,10 +56,10 @@ var sjcl = {
this.toString = function() { return "BUG: "+this.message; };
this.message = message;
},
/** @class Bug or missing feature in SJCL. */
/** @class Something isn't ready. */
notReady: function(message) {
this.toString = function() { return "GENERATOR NOT READY: "+this.message; };
this.toString = function() { return "NOT READY: "+this.message; };
this.message = message;
}
}