class Flowthings::Error

Public Class Methods

new(message="") click to toggle source
Calls superclass method
# File lib/flowthings/error.rb, line 3
def initialize(message="")
  if message
    super(message)
  end
end