// Do not add or modify anything in this file. #ifndef EXCEPTIONS_H #define EXCEPTIONS_H class Exception {}; class ExceptionIndexOutOfRange : Exception {}; class ExceptionMemoryNotAvailable : Exception {}; #endif