Exception: Solve::Errors::InvalidVersionFormat

Inherits:
SolveError
  • Object
show all
Defined in:
lib/solve/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ InvalidVersionFormat

Returns a new instance of InvalidVersionFormat.

Parameters:



11
12
13
# File 'lib/solve/errors.rb', line 11

def initialize(version)
  @version = version
end

Instance Attribute Details

#versionObject (readonly)

Returns the value of attribute version.



8
9
10
# File 'lib/solve/errors.rb', line 8

def version
  @version
end

Instance Method Details

#to_sObject



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

def to_s
  "'#{version}' did not contain a valid version string: 'x.y.z' or 'x.y'."
end