File: throw-error.js

package info (click to toggle)
node-raven-js 3.22.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,864 kB
  • sloc: javascript: 10,128; makefile: 144; python: 34
file content (5 lines) | stat: -rw-r--r-- 81 bytes parent folder | download | duplicates (2)
1
2
3
4
5
function throwRealError() {
  throw new Error('realError');
}

throwRealError();