// 1.8 CPU卡异常处理
        public string CpuExceptionHandle()
        {
            string temp = "";
            int    flag;

            byte[] resultByte = new byte[1000];
            flag = Recharge.CpuExceptionHandle(resultByte);
            temp = Convertor.Ascii2Str(resultByte);

            return(flag + ";" + temp);
        }