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.



86
87
88
89
# File 'lib/gdal/exceptions.rb', line 86

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