blob: 46ae88f8ef9a89abaa46fa7b0fd4914abdf71bec [file] [log] [blame]
jerrymf1579332013-02-07 01:56:28 +00001/*
2 * TableKeyNotDefinedException.cpp
3 *
4 * Created on: Sep 22, 2012
5 * Author: Mitchell Wills
6 */
7
8#include "tables/TableKeyNotDefinedException.h"
9#include <stdlib.h>
10#include <cstring>
11
12
13#define MESSAGE_PREFIX "Unkown Table Key: "
14TableKeyNotDefinedException::TableKeyNotDefinedException(const std::string key):
15msg(MESSAGE_PREFIX + key){
16
17}
18
19const char* TableKeyNotDefinedException::what(){
20 return msg.c_str();
21}
22
23TableKeyNotDefinedException::~TableKeyNotDefinedException() throw(){
24}