Sha256: 2a3071cf7fe9563a265841e7a0f979a694e52009e4da87f4426a5f4170e22481

Contents?: true

Size: 189 Bytes

Versions: 8

Compression:

Stored size: 189 Bytes

Contents

module Blueprints
  class PlanNotFoundError < NameError
    def initialize(*args)
      @plans = args
    end

    def to_s
      "Plan(s) not found '#{@plans.join(',')}'"
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
sinsiliux-blueprints-0.1.1 lib/blueprints/errors.rb
blueprints-0.2.4 lib/blueprints/errors.rb
blueprints-0.2.3 lib/blueprints/errors.rb
blueprints-0.2.2 lib/blueprints/errors.rb
blueprints-0.2.1 lib/blueprints/errors.rb
blueprints-0.2.0 lib/blueprints/errors.rb
blueprints-0.1.1 lib/blueprints/errors.rb
blueprints-0.1.0 lib/blueprints/errors.rb