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
/
condition_not_fulfilled.js
14 lines
(10 loc)
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(
function
(
) {
'use strict'
;
var
ConditionNotFulfilled
;
ConditionNotFulfilled
=
function
(
msg
) {
this
.
name
=
'ConditionNotFulfilled'
;
this
.
msg
= msg; };
ConditionNotFulfilled
.
prototype
=
Error
.
prototype
;
exports
.
ConditionNotFulfilled
=
ConditionNotFulfilled
; }());