add missing notready exception

pull/17/head
Quinn Slack 2011-04-19 01:14:01 -07:00
parent ac441e835e
commit 24d390c4c3
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,12 @@ var sjcl = {
bug: function(message) {
this.toString = function() { return "BUG: "+this.message; };
this.message = message;
},
/** @class Something isn't ready. */
notready: function(message) {
this.toString = function() { return "NOT READY: "+this.message; };
this.message = message;
}
}
};