summaryrefslogtreecommitdiffstats
path: root/node.d/node_modules/lib/ber/errors.js
blob: 0106747e6225f7ec683fd1d9765fb4fd6bb45bb0 (plain)
1
2
3
4
5
6
7
8
9
module.exports = {
	InvalidAsn1Error: function(msg) {
		var e = new Error()
		e.name = 'InvalidAsn1Error'
		e.message = msg || ''
		return e
	}
}