/// 业务异常(后端统一响应 code != 0) class ApiException implements Exception { final int code; final String message; ApiException(this.code, this.message); @override String toString() => message; }