# File lib/aws/record/validators/length.rb, line 81
      def too_short min, got
        msg = options[:too_short] || 
          "is too short (minimum is %{minimum} characters)"
        interpolate(msg, :minimum => min, :length => got)
      end