cpp-utilities/conversion/conversionexception.h

22 lines
425 B
C
Raw Normal View History

2015-04-22 18:36:40 +02:00
#ifndef CONVERSIONEXCEPTION_H
#define CONVERSIONEXCEPTION_H
2015-09-06 20:19:09 +02:00
#include "../application/global.h"
2015-04-22 18:36:40 +02:00
#include <stdexcept>
#include <string>
namespace ConversionUtilities {
class LIB_EXPORT ConversionException : public std::runtime_error
{
public:
ConversionException() USE_NOTHROW;
ConversionException(const std::string &what) USE_NOTHROW;
~ConversionException() USE_NOTHROW;
};
}
#endif // CONVERSIONEXCEPTION_H