Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

errors.js 147B

123456789
  1. module.exports = {
  2. InvalidAsn1Error: function(msg) {
  3. var e = new Error()
  4. e.name = 'InvalidAsn1Error'
  5. e.message = msg || ''
  6. return e
  7. }
  8. }