mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 04:23:19 +00:00
14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
define([
|
|
"jquery",
|
|
"underscore"
|
|
], function($, _) {
|
|
|
|
var Error = function (model, fieldId, message) {
|
|
this.model = model;
|
|
this.fieldId = fieldId;
|
|
this.message = message;
|
|
};
|
|
|
|
return Error;
|
|
});
|