mongodb/bson-ruby

View on GitHub
lib/bson/error/unsupported_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
# rubocop:todo all

module BSON
  class Error

    # Raised when trying to get a type from the registry that doesn't exist.
    class UnsupportedType < Error; end
  end
end