class UnknownVersionError

This class gets thrown when the platform is something other than valid driver versions.

Public Class Methods

new(version, msg = nil) click to toggle source
Calls superclass method
# File lib/chauffeur/unknown_version_error.rb, line 3
def initialize(version, msg = nil)
  msg ||= "Unknown Version: #{version}"
  super(msg)
end