Exception: OGR::OpenFailure

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/ogr/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(file, msg = nil) ⇒ OpenFailure

Returns a new instance of OpenFailure.



65
66
67
68
# File 'lib/ogr/exceptions.rb', line 65

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