UNPKG
tangram
Version:
latest (0.22.0)
0.22.0
0.21.1
0.21.0
0.20.1
0.20.0
0.19.1
0.19.0
0.18.2
0.18.1
0.18.0
0.17.5
0.17.4
0.17.3
0.17.2
0.17.1
0.17.0
0.16.1
0.16.0
0.15.5
0.15.4
0.15.3
0.15.1
0.15.0
0.14.2
0.14.1
0.14.0
0.13.2
0.13.1
0.13.0
0.0.1
WebGL Maps for Vector Tiles
github.com/tangrams/tangram
tangrams/tangram
tangram
/
src
/
utils
/
errors.js
10 lines
(7 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
MethodNotImplemented
extends
Error
{
constructor
(methodName) {
super
();
this
.name =
'MethodNotImplemented'
;
this
.message =
'Method '
+ methodName +
' must be implemented in subclass'
; } }