class UnknownPlatformError

This class gets thrown when the platform is something other than:

mingw32
mac
linux

Public Class Methods

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