import React from 'react';
import { formatMessage } from 'umi/locale';
import Link from 'umi/link';
import Exception from '@/components/Exception';
const Exception500 = () => ( <Exception type="500" desc={formatMessage({ id: 'app.exception.description.500' }, {})} style={{ minHeight: 500, height: '80%' }} linkElement={Link} backText={formatMessage({ id: 'app.exception.back' })} /> );
export default Exception500;