class Malt::Format::UnsupportedConversion

TODO: Is this needed anymore, if so where?

Public Class Methods

new(from_type, to_type) click to toggle source
Calls superclass method
# File lib/malt/formats/abstract.rb, line 269
def initialize(from_type, to_type)
  @from_type = from_type
  @to_type   = to_type
  super()
end

Public Instance Methods

message() click to toggle source
# File lib/malt/formats/abstract.rb, line 274
def message
  "unsupported conversion: #{@from_type} -> #{@to_type}"
end