An exception that is thrown when a record is attempted to be inserted into a slot that is already in use. More...
#include <slot_in_use_exception.h>
Public Member Functions | |
SlotInUseException (const PageId page_num, const SlotId slot_num) | |
virtual PageId | page_number () const |
virtual SlotId | slot_number () const |
Protected Attributes | |
const PageId | page_number_ |
const SlotId | slot_number_ |
An exception that is thrown when a record is attempted to be inserted into a slot that is already in use.
Definition at line 21 of file slot_in_use_exception.h.
wiscdb::SlotInUseException::SlotInUseException | ( | const PageId | page_num, |
const SlotId | slot_num | ||
) |
Constructs a slot in use exception file for the given page and slot.
page_num | Number of page containing slot. |
slot_num | Number of slot which is in use. |
Definition at line 15 of file slot_in_use_exception.cpp.
virtual PageId wiscdb::SlotInUseException::page_number | ( | ) | const [inline, virtual] |
Returns the page number of the page containing the slot which caused this exception.
Definition at line 35 of file slot_in_use_exception.h.
virtual SlotId wiscdb::SlotInUseException::slot_number | ( | ) | const [inline, virtual] |
Returns the slot number of the slot which caused this exception.
Definition at line 40 of file slot_in_use_exception.h.
const PageId wiscdb::SlotInUseException::page_number_ [protected] |
Page number of the page containing the slot which caused this exception.
Definition at line 46 of file slot_in_use_exception.h.
const SlotId wiscdb::SlotInUseException::slot_number_ [protected] |
Slot number of the slot which caused this exception.
Definition at line 51 of file slot_in_use_exception.h.