All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.asn1.lib.ber.errors.js Maven / Gradle / Ivy

// Copyright 2011 Mark Cavage  All rights reserved.


module.exports = {

  newInvalidAsn1Error: function(msg) {
    var e = new Error();
    e.name = 'InvalidAsn1Error';
    e.message = msg || '';
    return e;
  }

};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy