Exception: GDAL::UnknownGridAlgorithm

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

Instance Method Summary collapse

Constructor Details

#initialize(algorithm, msg = nil) ⇒ UnknownGridAlgorithm

Returns a new instance of UnknownGridAlgorithm.



64
65
66
67
# File 'lib/gdal/exceptions.rb', line 64

def initialize(algorithm, msg = nil)
  message = msg || "Unknown Grid algorithm type '#{algorithm}'."
  super(message)
end