@r/api-client
Version:
node and browser reddit api library
17 lines (11 loc) • 368 B
JavaScript
import FakeError from './error';
class ValidationError extends FakeError {
constructor (name, model, errors) {
super(name);
this.name = 'NoModelError';
this.message = name + ' had errors in: ' + errors.join(',') +
' with properties ' + JSON.stringify(model.toJSON());
this.status = 422;
}
}
export default ValidationError;