Exception: BEL::LibBEL::PlatformSupportError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/bel/libbel/platform_support_error.rb

Constant Summary collapse

ERROR_MSG =
%Q{
  The C extension library is not supported for your platform.

  Host information:

  RUBY_PLATFORM:                #{RUBY_PLATFORM},
  RUBY_ENGINE:                  #{RUBY_ENGINE},
  RUBY_VERSION:                 #{RUBY_VERSION},
  RbConfig::CONFIG['host_os']:  #{RbConfig::CONFIG['host_os']},
  RbConfig::CONFIG['host_cpu']: #{RbConfig::CONFIG['host_cpu']},
}.gsub(/^\s+/, '')

Instance Method Summary collapse

Constructor Details

#initializePlatformSupportError

Returns a new instance of PlatformSupportError.



18
19
20
# File 'lib/bel/libbel/platform_support_error.rb', line 18

def initialize
  super(ERROR_MSG)
end