Forestpath.org
the personal website of M. Coughlin
home
sustainable
technology
hobbies
learn
links
about
Home
»
Technology
»
Programming
»
JavaScript
» Exceptions
Exceptions
Try ... catch
try {
...
}
catch (e) {
...
throw(e); // Re-throw the exception
}
Supported by: IE5+, NS6+, Mozilla, Firefox, ...