class CursorPager::CursorNotFoundError

Will be raised when the cursor's record couldn't be found in the relation.

Attributes

cursor[R]

Public Class Methods

new(cursor) click to toggle source
Calls superclass method
# File lib/cursor_pager/cursor_not_found_error.rb, line 9
def initialize(cursor)
  @cursor = cursor
  message = "Couldn't find item for cursor: #{cursor}."

  super(message)
end