UNPKG
@axerunners/axecore-lib
Version:
latest (0.18.13)
0.18.13
0.18.0
0.17.11
0.17.9
0.17.8
0.17.7
0.17.6
0.17.4
0.17.3
0.17.2
0.17.0
0.16.10
0.16.9
0.16.8
0.16.7
0.16.0
0.15.8
0.15.7
0.15.6
0.15.5
A pure and powerful JavaScript Axe library.
github.com/axerunners/axecore-lib
axerunners/axecore-lib
@axerunners/axecore-lib
/
lib
/
errors
/
WrongPublicKeyHashError.js
13 lines
(10 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function WrongPublicKeyHashError(message) {
this
.name =
this
.
constructor
.name;
this
.message = message;
if
(Error.captureStackTrace) { Error.captureStackTrace(
this
,
this
.
constructor
); }
else
{
this
.stack = (new Error()).stack; } } module.exports = WrongPublicKeyHashError;