We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b1cc2 commit 9abb158Copy full SHA for 9abb158
CHANGELOG.md
@@ -6,6 +6,7 @@ Read `release_notes.md` for commit level details.
6
### Enhancements
7
8
### Bug fixes
9
+- Inherit CoreError for ServerError in order to handle it as an exception
10
11
### Deprecations
12
lib/appium_lib_core/common/error.rb
@@ -14,7 +14,7 @@ class NoSuchElementError < CoreError; end
14
class UnsupportedOperationError < CoreError; end
15
16
# Server side error
17
- class ServerError; end
+ class ServerError < CoreError; end
18
end
19
20
0 commit comments