defines two error classes

VMError and VMCAPIError
This commit is contained in:
onyx-and-iris 2023-07-07 02:31:22 +01:00
parent 02e4e3cd50
commit 280ac4ef54

View File

@ -0,0 +1,9 @@
module Voicemeeter
module Errors
class VMError < StandardError
end
class VMCAPIError < VMError
end
end
end