programming-examples/c++/Others/dsexceptions.h - Simple exception classes.cpp
2019-11-15 12:59:38 +01:00

12 lines
249 B
C++

dsexceptions.h - Simple exception classes
#ifndef DSEXCEPTIONS_H_
#define DSEXCEPTIONS_H_
class Underflow { };
class Overflow { };
class OutOfMemory { };
class BadIterator { };
#endif