programming-examples/c++/Others/dsexceptions.h - Simple exception classes.cpp

12 lines
249 B
C++
Raw Normal View History

2019-11-15 12:59:38 +01:00
dsexceptions.h - Simple exception classes
#ifndef DSEXCEPTIONS_H_
#define DSEXCEPTIONS_H_
class Underflow { };
class Overflow { };
class OutOfMemory { };
class BadIterator { };
#endif