UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

16 lines (13 loc) 351 B
'use strict'; module.exports = fn => async (...args) => { try { await fn(...args); } catch (error) { if (strapi.errors.isBoom(error)) { throw error; } // these are errors like unique constraints strapi.log.error(error); throw strapi.errors.badRequest('Invalid input data. Please verify unique constraints'); } };