Skip to content

Instantly share code, notes, and snippets.

@apipkin
Created March 5, 2010 15:21
Show Gist options
  • Save apipkin/322804 to your computer and use it in GitHub Desktop.
Save apipkin/322804 to your computer and use it in GitHub Desktop.
_timerException : function(msg) {
var error = new Error(msg);
if(!error.message) {
error.message = msg;
}
error.name = EXCEPTIONS.NAME; // TIMER_EXCEPTION
return error;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment