module Concurrent::Utility::NativeExtensionLoader

def load_error_path(error)

def load_error_path(error)
  if error.respond_to? :path
    error.path
  else
    error.message.split(' -- ').last
  end
end