UNPKG
ethereum-lite-explorer
Version:
latest (1.0.0-beta.8)
1.0.0-beta.8
Ethereum Lite Explorer
ethereum-lite-explorer
/
src
/
app
/
util
/
LinkedError.ts
7 lines
(6 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
class
LinkedError
extends
Error
{
constructor
(
message
:
string
,
public
cause
?:
Error
) {
super
(message);
this
.
name
=
"LinkedError"
; } }