voicemeeter-rb/lib/voicemeeter/errors.rb

10 lines
128 B
Ruby
Raw Normal View History

module Voicemeeter
module Errors
class VMError < StandardError
end
class VMCAPIError < VMError
end
end
end