summaryrefslogtreecommitdiffstats
path: root/collectors/node.d.plugin/node_modules/lib/ber/errors.js
blob: 1c0df7b135bc7d00d489d4ca4c8d9d4ac5fb7b51 (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: MIT

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