1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# frozen_string_literal: true
# rubocop:todo all
module BSON
class Error
# Raised when the exponent is outside the valid range.
class InvalidDecimal128Range < Error
# The custom error message for this error.
#
# @deprecated
MESSAGE = 'Value out of range for Decimal128 representation.'
# Get the custom error message for the exception.
#
# @example Get the message.
# error.message
#
# @return [ String ] The error message.
def message
MESSAGE
end
end
end
end
|