class GDAL::UnknownGridAlgorithm

Public Class Methods

new(algorithm, msg = nil) click to toggle source
Calls superclass method
# File lib/gdal/exceptions.rb, line 86
def initialize(algorithm, msg = nil)
  message = msg || "Unknown Grid algorithm type '#{algorithm}'."
  super(message)
end