LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : import 'package:at_commons/at_commons.dart'; 2 : 3 : class AtClientExceptionUtil { 4 0 : static String getErrorCode(Exception exception) { 5 0 : var errorCode = error_codes[exception.runtimeType.toString()]; 6 : errorCode ??= 'AT0014'; 7 : return errorCode; 8 : } 9 : 10 0 : static String? getErrorDescription(String errorCode) { 11 0 : return error_description[errorCode]; 12 : } 13 : } |
![]() |
Generated by: LCOV version 1.13 |