This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/errors.js

9 lines
177 B
JavaScript
Raw Normal View History

2016-09-17 21:53:30 +00:00
import httpErrors from 'http-errors';
const apiError = (code, id, message) => {
return httpErrors(code, message, { id });
};
export default apiError;
2017-05-10 06:14:24 +00:00
export { httpErrors };