Exception: Rodiff::Executable::UnsupportedPlatform

Inherits:
Rodiff::Error
  • Object
show all
Defined in:
lib/rodiff/executable.rb

Instance Method Summary collapse

Constructor Details

#initialize(platform) ⇒ UnsupportedPlatform

Returns a new instance of UnsupportedPlatform.



12
13
14
15
16
17
18
19
# File 'lib/rodiff/executable.rb', line 12

def initialize(platform)
  super(
    <<~MSG
      odiff does not support the #{platform} platform
      Please install odiff following instructions at https://github.com/dmtrKovalenko/odiff#installation
    MSG
  )
end