mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
Re-organize ignored errors in ascending order of errno [skip ci]
This commit is contained in:
parent
f23a2ccfe6
commit
247ec24e46
1 changed files with 8 additions and 7 deletions
|
@ -124,15 +124,16 @@ class ExceptionHandler {
|
||||||
_ignoredErrors.any((element) => error.contains(element));
|
_ignoredErrors.any((element) => error.contains(element));
|
||||||
|
|
||||||
static const List<String> _ignoredErrors = const [
|
static const List<String> _ignoredErrors = const [
|
||||||
"errno = 103", // SocketException: Software caused connection abort
|
|
||||||
"errno = 9", // SocketException: Bad file descriptor
|
"errno = 9", // SocketException: Bad file descriptor
|
||||||
"errno = 32", // SocketException: Write failed (OS Error: Broken pipe)
|
|
||||||
"errno = 60", // SocketException: Operation timed out
|
|
||||||
"errno = 110", // SocketException: Connection timed out
|
|
||||||
"errno = 54", // SocketException: Connection reset by peer
|
|
||||||
"errno = 49", // SocketException: Can't assign requested address
|
|
||||||
"errno = 57", // SocketException: Read failed (OS Error: Socket is not connected)
|
|
||||||
"errno = 28", // OS Error: No space left on device
|
"errno = 28", // OS Error: No space left on device
|
||||||
|
"errno = 32", // SocketException: Write failed (OS Error: Broken pipe)
|
||||||
|
"errno = 49", // SocketException: Can't assign requested address
|
||||||
|
"errno = 54", // SocketException: Connection reset by peer
|
||||||
|
"errno = 57", // SocketException: Read failed (OS Error: Socket is not connected)
|
||||||
|
"errno = 60", // SocketException: Operation timed out
|
||||||
|
"errno = 103", // SocketException: Software caused connection abort
|
||||||
|
"errno = 104", // SocketException: Connection reset by peer
|
||||||
|
"errno = 110", // SocketException: Connection timed out
|
||||||
"PERMISSION_NOT_GRANTED",
|
"PERMISSION_NOT_GRANTED",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue