class Swiftproj::MissingArgumentError

Public Class Methods

new(argument_name) click to toggle source
# File lib/swiftproj/error.rb, line 18
def initialize(argument_name)
  @argument_name = argument_name
end

Public Instance Methods

message() click to toggle source
# File lib/swiftproj/error.rb, line 22
def message()
  return "Required argument is missing: #{@argument_name}"
end