lib/db_mod/exceptions/no_results.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'base'

module DbMod
  module Exceptions
    # Raised by a statement or prepared method that
    # has been configured using
    # {Statements::Configuration::MethodConfiguration#single},
    # when a result set expected to contain at least one
    # result does not.
    class NoResults < Base
    end
  end
end