OptppFatalError.h
00001 #ifndef OPTPPFATALERROR_H
00002 #define OPTPPFATALERROR_H
00003
00004 #include "OptppExceptions.h"
00013 namespace OPTPP {
00014
00015 void OptppfatalError(const char* mesg);
00016 void OptppmemoryError(const char* mesg);
00017 void OptpprangeError(const char* mesg, int i, int low, int high);
00018 void OptppmathError(const char* mesg);
00019 void OptppdomainError(const char* mesg, const double& badValue);
00020 void OptppzeroDivide(const char* mesg);
00021
00022 }
00023
00024 #endif