Exception: GDAL::OpenFailure

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gdal/exceptions.rb

Overview

CPLE_OpenFailed

Instance Method Summary collapse

Constructor Details

#initialize(file, msg = nil) ⇒ OpenFailure

Returns a new instance of OpenFailure.



9
10
11
12
# File 'lib/gdal/exceptions.rb', line 9

def initialize(file, msg = nil)
  message = msg || "Unable to open file '#{file}'. Perhaps an unsupported file format?"
  super(message)
end