class Athena::Formats::FormatNotFoundError

Public Class Methods

new(direction, format) click to toggle source
    # File lib/athena/formats.rb
422 def initialize(direction, format)
423   @direction, @format = direction, format
424 end

Public Instance Methods

to_s() click to toggle source
    # File lib/athena/formats.rb
426 def to_s
427   "format not found (#{@direction.inspect}): #{@format.inspect}"
428 end