Exception: Sequel::NoMatchingRow

Inherits:
Error show all
Defined in:
lib/sequel/exceptions.rb

Overview

Error raised when the user requests a record via the first! or similar method, and the dataset does not yield any rows.

Constant Summary

Constants inherited from Error

Error::AdapterNotFound, Error::InvalidOperation, Error::InvalidValue, Error::PoolTimeoutError, Error::Rollback

Instance Attribute Summary collapse

Attributes inherited from Error

#wrapped_exception

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ NoMatchingRow

If the first argument is a Sequel::Dataset, set the dataset related to the exception to that argument, instead of assuming it is the exception message.



61
62
63
64
65
66
67
# File 'lib/sequel/exceptions.rb', line 61

def initialize(msg=nil)
  if msg.is_a?(Sequel::Dataset)
    @dataset = msg
    msg = nil
  end
  super
end

Instance Attribute Details

#datasetObject

The dataset that raised this NoMatchingRow exception.



57
58
59
# File 'lib/sequel/exceptions.rb', line 57

def dataset
  @dataset
end