remove exception

This commit is contained in:
kukulaka
2020-09-03 16:22:06 +01:00
parent a1c432f2f4
commit bd82ca522c

View File

@@ -2,11 +2,11 @@
* middleware to manage actions on responses such as
* export / import and caching
* @todo move set caching into here.
* @todo error catching for export
*
*/
import { RequestHandler } from 'express';
import asyncHandler from 'express-async-handler';
import { ExportFailedException } from '../exceptions';
const responseManager: RequestHandler = asyncHandler(async (req, res, next) => {
if (!req.query.export) {