class Teaspoon::UnknownFrameworkVersion

Public Class Methods

new(msg_or_options) click to toggle source
Calls superclass method
# File lib/teaspoon/exceptions.rb, line 39
def initialize(msg_or_options)
  super(build_message(msg_or_options) do |options|
    "Unknown framework version: expected \"#{options[:name]}\" to have version #{options[:version]}."
  end)
end