Exception: MPV::UnsupportedOptionError

Inherits:
Error
  • Object
show all
Defined in:
lib/mpv_ipc/exceptions.rb

Overview

Raised when ‘mpv` doesn’t support a requested option.

Instance Method Summary collapse

Constructor Details

#initialize(option) ⇒ UnsupportedOptionError

Returns a new instance of UnsupportedOptionError.



51
52
53
# File 'lib/mpv_ipc/exceptions.rb', line 51

def initialize(option)
  super "The installed mpv does not support the #{option} option"
end