| 123456789101112131415161718 |
- import 'dart:core';
- /// @author: bo.zeng
- /// @email: cnhbwds@gmail.com
- /// @date: 2025 2025/4/14 10:39
- /// @description:
- class MyException implements Exception {
- final int code;
- final String? msg;
- MyException({required this.code, this.msg});
- @override
- String toString() {
- return 'MyException {code: $code, msg: $msg}';
- }
- }
|