UNPKG
oomph
Version:
latest (0.3.6)
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.3.0-a
0.2.1
Object Oriented javascript models for the client and the server
github.com/Kenspeckled/oomph
oomph
/
src
/
models
/
ValidationError.coffee
10 lines
(8 loc)
•
296 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
class
ValidationError
extends
Error
constructor
: (message, args) ->
@name
=
'ValidationError'
@message
= message
@attribute
= args.attribute
if
args.attribute
@expected
= args.expected
if
args.expected
@actual
= args.
actual
if
args.
actual
module.exports = ValidationError