0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/message/throw_non_error.js

10 lines
168 B
JavaScript
Raw Normal View History

var common = require('../common');
var assert = require('assert');
console.error('before');
// custom error throwing
2012-02-19 00:01:35 +01:00
throw ({ foo: 'bar' });
console.error('after');