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