Exception: DockerToolkit::ChildProcess::MissingPlatformError
- Inherits:
-
Error
- Object
- StandardError
- Error
- DockerToolkit::ChildProcess::MissingPlatformError
- Defined in:
- lib/docker_toolkit/childprocess/errors.rb
Instance Method Summary collapse
-
#initialize ⇒ MissingPlatformError
constructor
A new instance of MissingPlatformError.
Constructor Details
#initialize ⇒ MissingPlatformError
Returns a new instance of MissingPlatformError.
19 20 21 22 23 24 |
# File 'lib/docker_toolkit/childprocess/errors.rb', line 19 def initialize = "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() end |