Exception: MPV::MPVUnsupportedFlagError
- Defined in:
- lib/mpv/exceptions.rb
Overview
Raised when mpv
doesn't support a requested flag.
Instance Method Summary collapse
-
#initialize(flag) ⇒ MPVUnsupportedFlagError
constructor
A new instance of MPVUnsupportedFlagError.
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 |