class Teaspoon::ServerError

Public Class Methods

new(msg_or_options) click to toggle source
Calls superclass method
# File lib/teaspoon/exceptions.rb, line 125
def initialize(msg_or_options)
  super(build_message(msg_or_options) do |options|
    "Unable to start teaspoon server; #{options[:desc] || 'for an unknown reason'}."
  end)
end