class Zeno::ApplicationAlreadyExistsError

Attributes

msg[R]

Public Class Methods

new(msg = nil) click to toggle source
# File lib/zeno/applicationalreadyexistserror.rb, line 24
def initialize(msg = nil)
  @msg = msg || "The requested application name already exists!"
end

Public Instance Methods

message() click to toggle source
# File lib/zeno/applicationalreadyexistserror.rb, line 28
def message
  @msg
end