PageRenderTime 19477ms CodeModel.GetById 27ms RepoModel.GetById 5ms app.codeStats 0ms

/tags/jsdoc_toolkit-1.3.3/test/data/throws.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 22 lines | 6 code | 5 blank | 11 comment | 0 complexity | ddd73e9f6ed132490a05ea3b647c6e2f MD5 | raw file
  1. /**
  2. * Just a test.
  3. * @throws {ExceptionType} This is the label text.
  4. */
  5. function processFile(fileId) {
  6. }
  7. /**
  8. * @exception {OutOfMemory}
  9. */
  10. function readFile(path) {
  11. }
  12. /**
  13. * @throws {IOException}
  14. * @throws {PermissionDenied}
  15. */
  16. function writeFile(path) {
  17. }