class AyeCommander::Error

Core AyeCommander Error

Public Class Methods

new(info = nil) click to toggle source
# File lib/aye_commander/errors.rb, line 4
def initialize(info = nil)
  @info = info
end

Public Instance Methods

inspect() click to toggle source
# File lib/aye_commander/errors.rb, line 8
def inspect
  "#<#{self.class}: #{self}>"
end
to_s() click to toggle source
# File lib/aye_commander/errors.rb, line 12
def to_s
  message
end