wisc_db
hash_not_found_exception.h
1 
8 #pragma once
9 
10 #include <string>
11 
12 #include "wiscdb_exception.h"
13 #include "include/types.h"
14 
15 namespace wiscdb {
16 
21  public:
25  explicit HashNotFoundException(const std::string& nameIn, PageId pageNoIn);
26 
27  protected:
31  const std::string& name;
32 
36  const PageId pageNo;
37 };
38 
39 }
Definition: buffer.h:14
An exception that is thrown when an entry being looked up in the hash table is not present in it...
std::uint32_t PageId
Identifier for a page in a file.
Definition: types.h:15
Base class for all WiscDB-specific exceptions.
HashNotFoundException(const std::string &nameIn, PageId pageNoIn)