/tags/jsdoc_toolkit-1.3.3/test/data/throws.js
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) {
- }