UNPKG

oomph

Version:

Object Oriented javascript models for the client and the server

10 lines (8 loc) 296 B
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