class ChildProcess::MissingPlatformError
Public Class Methods
Source
# File lib/childprocess/errors.rb, line 29 def initialize message = "posix_spawn is not yet supported on #{ChildProcess.platform_name} (#{RUBY_PLATFORM}), falling back to default implementation. " + "If you believe this is an error, please file a bug at http://github.com/enkessler/childprocess/issues" super(message) end
Calls superclass method