mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 23:36:56 +00:00

PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
14 lines
239 B
JavaScript
14 lines
239 B
JavaScript
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
|
|
|
|
module.exports = {
|
|
|
|
newInvalidAsn1Error: function(msg) {
|
|
var e = new Error();
|
|
e.name = 'InvalidAsn1Error';
|
|
e.message = msg || '';
|
|
return e;
|
|
}
|
|
|
|
};
|