e0a986eb30
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
240 B
JavaScript
14 lines
240 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;
|
|
}
|
|
|
|
};
|