UNPKG
foxx_generator
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
Generate Foxx APIs using Statecharts and Domain Driven Design
github.com/moonglum/foxx_generator
foxx_generator
/
foxx_generator
/
vertex_not_found.js
13 lines
(10 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
(
function
(
) {
'use strict'
;
var
VertexNotFound
;
VertexNotFound
=
function
(
) {
this
.
name
=
'VertexNotFound'
;
this
.
message
=
'The vertex could not be found'
; };
VertexNotFound
.
prototype
=
Error
.
prototype
;
exports
.
VertexNotFound
=
VertexNotFound
; }());