Skip to content

Commit 84f1d14

Browse files
committed
InvalidNetworkError should not extend Error
(cherry picked from commit b7da262d6e21cef1ff295ff41ae558754e79e4f1)
1 parent a17cde7 commit 84f1d14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.expensify.wallet.error
22

3-
class InvalidNetworkError : Error {
3+
class InvalidNetworkError : Exception {
44
constructor() : super("Unsupported card network, please verify your card details")
55
constructor(message: String) : super(message)
66
}

0 commit comments

Comments
 (0)