// Must be used as is. #ifndef EXCEPTIONS_H #define EXCEPTIONS_H class Exception {}; class ExceptionIndexOutOfRange : Exception {}; class ExceptionMemoryNotAvailable : Exception {}; #endif