1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-02-24 02:19:43 +00:00

14 lines
240 B
JavaScript
Raw Normal View History

2019-05-30 12:06:47 +03:00
// 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;
}
};