Skip to content

Instantly share code, notes, and snippets.

@aertmann
Created June 21, 2012 16:52
Show Gist options
  • Save aertmann/2966975 to your computer and use it in GitHub Desktop.
Save aertmann/2966975 to your computer and use it in GitHub Desktop.
JavaScript TYPO3 Exception
function TYPO3Exception(message, code) {
this.message = message;
this.code = code;
this.toString = function() {
return this.message + ' (#' + this.code + ')';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment