UNPKG
@dancrumb/fpish
Version:
latest (8.0.0)
8.0.0
7.6.0
7.5.1
7.5.0
7.4.1
7.4.0
7.3.2
7.3.1
7.2.2
7.2.1
7.2.0
7.1.0
7.0.0
6.0.3
6.0.2
6.0.1
5.2.1
5.2.0
5.1.0
FP-friendly classes for Typescript
github.com/dancrumb/fpish
dancrumb/fpish
@dancrumb/fpish
/
dist
/
exceptions
/
NoSuchElementException.js
9 lines
(8 loc)
•
210 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
class
NoSuchElementException
extends
Error
{ message; name;
constructor
(
message =
''
) {
super
(message);
Object
.
setPrototypeOf
(
this
,
NoSuchElementException
.
prototype
); } }