Exception: MPV::MPVUnsupportedFlagError

Inherits:
MPVError
  • Object
show all
Defined in:
lib/mpv/exceptions.rb

Overview

Raised when mpv doesn't support a requested flag.

Instance Method Summary collapse

Constructor Details

#initialize(flag) ⇒ MPVUnsupportedFlagError

Returns a new instance of MPVUnsupportedFlagError.



17
18
19
# File 'lib/mpv/exceptions.rb', line 17

def initialize(flag)
  super "Installed mpv doesn't support the #{flag} flag"
end