2014-04-20 09:14:15 +00:00
|
|
|
#ifndef INVALIDDATAEXCEPTION_HPP
|
|
|
|
#define INVALIDDATAEXCEPTION_HPP
|
|
|
|
|
2014-09-29 03:33:36 +00:00
|
|
|
#include "Athena/Exception.hpp"
|
2014-04-20 09:14:15 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
namespace Athena
|
|
|
|
{
|
|
|
|
namespace error
|
|
|
|
{
|
|
|
|
/*! \class InvalidDataException
|
|
|
|
* \brief An exception thrown on Invalid Data calls.
|
|
|
|
*
|
|
|
|
* This should only be thrown when the library tries to
|
|
|
|
* e.g pass a NULL pointer to a function which requires a valid pointer.
|
|
|
|
* <br />
|
|
|
|
* It is <b>NOT</b> appropriate to use <b>throw new</b> so avoid doing so,
|
|
|
|
* keeping things on the stack as much as possible is very important for speed.
|
|
|
|
*/
|
|
|
|
class InvalidDataException : public Exception
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
inline InvalidDataException(const std::string& error, const std::string& file, const std::string& function, const int line)
|
2015-05-18 23:28:17 +00:00
|
|
|
: Exception(("InvalidDataException") + error, file, function, line)
|
2014-04-20 09:14:15 +00:00
|
|
|
{
|
2015-05-18 23:28:17 +00:00
|
|
|
m_exceptionName = "InvalidDataException";
|
2014-04-20 09:14:15 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // error
|
|
|
|
} // Athena
|
|
|
|
|
2014-12-29 04:46:43 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define THROW_INVALID_DATA_EXCEPTION(args, ...) \
|
|
|
|
do { \
|
2015-06-20 04:40:15 +00:00
|
|
|
if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args, __VA_ARGS__); return; } \
|
2015-05-18 23:28:17 +00:00
|
|
|
else { std::string msg = Athena::utility::sprintf(args, __VA_ARGS__); \
|
|
|
|
throw Athena::error::InvalidDataException(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
2014-12-29 04:46:43 +00:00
|
|
|
} while(0)
|
|
|
|
#elif defined(__GNUC__)
|
2014-05-31 00:40:35 +00:00
|
|
|
#define THROW_INVALID_DATA_EXCEPTION(args...) \
|
2015-05-18 23:28:17 +00:00
|
|
|
do { if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args); return; } \
|
|
|
|
else { std::string msg = Athena::utility::sprintf(args); \
|
|
|
|
throw Athena::error::InvalidDataException(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2015-06-20 04:40:15 +00:00
|
|
|
#define THROW_INVALID_DATA_EXCEPTION_RETURN(ret, args, ...) \
|
2014-05-31 00:40:35 +00:00
|
|
|
do { \
|
2015-06-20 04:40:15 +00:00
|
|
|
if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args, __VA_ARGS__); return ret; } \
|
2015-05-18 23:28:17 +00:00
|
|
|
else { std::string msg = Athena::utility::sprintf(args, __VA_ARGS__); \
|
|
|
|
throw Athena::error::InvalidDataException(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define THROW_INVALID_DATA_EXCEPTION_RETURN(ret, args...) \
|
|
|
|
do { if (atGetExceptionHandler()) {atGetExceptionHandler()(__FILE__, AT_PRETTY_FUNCTION, __LINE__, args); return ret; } \
|
|
|
|
else { std::string msg = Athena::utility::sprintf(args); \
|
|
|
|
throw Athena::error::InvalidDataException(msg, __FILE__, AT_PRETTY_FUNCTION, __LINE__); \
|
|
|
|
} \
|
2014-05-31 00:40:35 +00:00
|
|
|
} while(0)
|
2014-12-29 04:46:43 +00:00
|
|
|
#endif
|
2014-04-20 09:14:15 +00:00
|
|
|
#endif // INVALIDDATAEXCEPTION_HPP
|