class LicenseAcceptance::ProductVersionTypeError

Public Class Methods

new(product_version) click to toggle source
Calls superclass method
# File lib/license_acceptance/product_reader.rb, line 118
def initialize(product_version)
  msg = "Product versions must be specified as a string, provided type is '#{product_version.class}'"
  super(msg)
end