class AWS::Creds::InvalidKeyTab
Attributes
msg[RW]
path[RW]
Public Class Methods
new(path, msg=nil)
click to toggle source
# File lib/aws/creds/store.rb, line 6 def initialize path, msg=nil @path, @msg = path, msg def to_s "#{path}: #{msg}" end end
Public Instance Methods
to_s()
click to toggle source
# File lib/aws/creds/store.rb, line 9 def to_s "#{path}: #{msg}" end