class OBarc::Utils::Exceptions::MissingArgumentError
Public Class Methods
new(missed_args)
click to toggle source
Calls superclass method
OBarc::Utils::Exceptions::OBarcError::new
# File lib/obarc/utils/exceptions.rb, line 19 def initialize(missed_args) list = missed_args.map {|arg| arg.to_s} * (', ') msg = "#{list} are required." super(msg) end