source: trip-planner-front/node_modules/asn1/lib/ber/errors.js@ 59329aa

Last change on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 240 bytes
Line 
1// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
2
3
4module.exports = {
5
6 newInvalidAsn1Error: function (msg) {
7 var e = new Error();
8 e.name = 'InvalidAsn1Error';
9 e.message = msg || '';
10 return e;
11 }
12
13};
Note: See TracBrowser for help on using the repository browser.