GPLIB++
GeneralSelect.cpp
Go to the documentation of this file.
1 #include "GeneralSelect.h"
2 #include "FatalException.h"
3 
4 namespace gplib
5  {
7  initialized(false)
8  {
9  }
10 
12  {
13  }
14 
16  {
17  if (!initialized)
18  throw FatalException(
19  "Trying to use Select::GetOne without initializing !");
20  return DoGetOne();
21  }
22  }
The basic exception class for all errors that arise in gplib.