| | |
| | | package cn.flightfeather.supervision.lightshare.web |
| | | |
| | | import cn.flightfeather.supervision.common.exception.ResponseErrorException |
| | | import cn.flightfeather.supervision.common.exception.BizException |
| | | import cn.flightfeather.supervision.lightshare.vo.BaseResponse |
| | | import cn.flightfeather.supervision.lightshare.vo.DataHead |
| | | |
| | |
| | | } else { |
| | | BaseResponse(true, data = res) |
| | | } |
| | | } catch (e: ResponseErrorException) { |
| | | BaseResponse(false, message = e.message ?: "") |
| | | } catch (e: BizException) { |
| | | BaseResponse(false, message = e.message ?: "", stackTrace = e.stackTraceToString()) |
| | | } catch (e: Exception) { |
| | | // fixme: to log system |
| | | |
| | | BaseResponse(false, message = "服务器出现内部错误", stackTrace = e.stackTraceToString()) |
| | | } |
| | | } |