blob: 47221bc3f81f23c406cb6f11abcb51a6668d8277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var domain = require('domain');
//throw new Error('bazz');
var d = domain.create();
d.on('error', function ( e ) {
console.log('error!!!', e);
});
d.run(function () {
console.log('hey');
throw new Error('bazz');
});
|