Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CASTOR_ENCODINGEXCEPTION_H
00018 #define CASTOR_ENCODINGEXCEPTION_H 1
00019
00020 #include "Exception.h"
00021
00022 namespace castor {
00023
00024 class EncodingException : public Exception {
00025
00026 public:
00027
00028 EncodingException(const std::string what = "unknown encoding exception occured", ...) throw() {
00029 va_list params;
00030 va_start(params, what);
00031 setReason(what, params);
00032 va_end(params);
00033 }
00034 };
00035 }
00036
00037 #endif
00038