export const ERRORS = { SERVER_ERROR: { code: 'A001', message: 'server error', httpCode: 500 }, FORBIDDEN_API_PIG_FARM: { code: 'A002', message: 'token is not valid, access denied', httpCode: 401 }, TOKEN_NOT_FOUND_API_PIG_FARM: { code: 'A003', message: 'token not found', httpCode: 404 }, TOKEN_DUPLICATE_FOUND_API_PIG_FARM: { code: 'A004', message: 'token already exists', httpCode: 409 }, NOT_FOUND_CATALOG_API_PIG_FARM: { code: 'A005', message: 'category not found', httpCode: 404 }, CATEGORY_DUPLICATE_API_PIG_FARM: { code: 'A006', message: 'category already exists', httpCode: 409 }, CATEGORY_NOT_FOUND_PIG_FARM: { code: 'A007', message: 'category not found', httpCode: 409 }, TEMPLATE_MESSAGE_NOT_FOUND: { code: 'A008', message: 'template not found', httpCode: 404 } }