mirror of
https://github.com/outline/outline.git
synced 2026-02-14 14:58:46 -06:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
// @flow
|
|
import httpErrors from 'http-errors';
|
|
|
|
const apiError = (code: number, id: string, message: string) => {
|
|
return httpErrors(code, message, { id });
|
|
};
|
|
|
|
export default apiError;
|
|
export { httpErrors };
|