class RGeoServer::DataStore::DataTypeNotExpected

Public Class Methods

new(data_type) click to toggle source
# File lib/rgeoserver/datastore.rb, line 17
def initialize(data_type)
  @data_type = data_type
end

Public Instance Methods

message() click to toggle source
# File lib/rgeoserver/datastore.rb, line 21
def message
  "The DataStore does not not accept the data type '#{@data_type}'."
end