/tags/jsdoc_toolkit-1.4.0/test/data/throws.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 22 lines · 6 code · 5 blank · 11 comment · 0 complexity · ddd73e9f6ed132490a05ea3b647c6e2f MD5 · raw file
- /**
- * Just a test.
- * @throws {ExceptionType} This is the label text.
- */
- function processFile(fileId) {
- }
- /**
- * @exception {OutOfMemory}
- */
- function readFile(path) {
- }
- /**
- * @throws {IOException}
- * @throws {PermissionDenied}
- */
- function writeFile(path) {
- }