10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
|
const UserError = require('vn-loopback/util/user-error');
|
||
|
|
||
|
module.exports = Self => {
|
||
|
Self.rewriteDbError(function(err) {
|
||
|
if (err.code === 'ER_DUP_ENTRY')
|
||
|
return new UserError(`The observation type can't be repeated`);
|
||
|
return err;
|
||
|
});
|
||
|
};
|