Exception: GemCache::InvalidVersionConstraintError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gemcache/errors.rb

Overview

Raised when an unrecognized version constraint is passed in a dependency.

Instance Method Summary collapse

Constructor Details

#initialize(operator) ⇒ InvalidVersionConstraintError

Returns a new instance of InvalidVersionConstraintError.



15
16
17
# File 'lib/gemcache/errors.rb', line 15

def initialize(operator)
  super("The semantic versioning contraint '#{operator}' is not recognized")
end