#include #include "OutOfBounds.h" using namespace std ; // OutOfBounds member functions OutOfBounds::OutOfBounds() : out_of_range("TwoDimArray OutOfBounds") { // do nothing } OutOfBounds::OutOfBounds(const string& str) : out_of_range("TwoDimArray OutOfBounds") { // do nothing } OutOfBounds::~OutOfBounds() throw() { // do nothing }