new error classes

OBSWSConnectionError, OBSWSRequestError added

they subclass OBSWSError

readme updated with new error classes
This commit is contained in:
2023-08-11 02:22:14 +01:00
parent 515fa565d4
commit 976c8f19a8
11 changed files with 73 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
module OBSWS
module Version
module VERSION
module_function
def major
@@ -7,11 +7,11 @@ module OBSWS
end
def minor
4
5
end
def patch
2
0
end
def to_a
@@ -22,6 +22,4 @@ module OBSWS
to_a.join(".")
end
end
VERSION = Version.to_s
end