UNPKG
vee-dom
Version:
latest (0.0.1)
0.0.1
Small and easy to use virtual dom library
vee-dom
/
lib
/
exceptions
/
missing-parent.js
7 lines
(4 loc)
•
134 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
const
BaseException
=
require
(
'./base'
);
class
MissingParent
extends
BaseException
{}
module
.
exports
=
MissingParent
;