Exception: Semverse::InvalidVersionFormat

Inherits:
SemverseError
  • Object
show all
Defined in:
lib/semverse/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ InvalidVersionFormat

Returns a new instance of InvalidVersionFormat.

Parameters:



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

def initialize(version)
  @version = version
end

Instance Attribute Details

#versionObject (readonly)

Returns the value of attribute version.



5
6
7
# File 'lib/semverse/errors.rb', line 5

def version
  @version
end

Instance Method Details

#to_sObject



12
13
14
# File 'lib/semverse/errors.rb', line 12

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