00001
00002
00003
00004
00005
00006
00007 #ifndef COH_ILLEGAL_STATE_EXCEPTION_HPP
00008 #define COH_ILLEGAL_STATE_EXCEPTION_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/RuntimeException.hpp"
00013 #include "coherence/lang/String.hpp"
00014
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016
00017
00018
00019
00020
00021
00022
00023 class COH_EXPORT IllegalStateException
00024 : public throwable_spec<IllegalStateException,
00025 extends<RuntimeException> >
00026 {
00027 friend class factory<IllegalStateException>;
00028
00029
00030
00031 protected:
00032
00033
00034
00035
00036
00037
00038
00039
00040 IllegalStateException(String::View vsMsg = String::null_string,
00041 Exception::View vCause = NULL);
00042 };
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057 #define COH_ENSURE_RELATION(TYPE, EXPL, OP, EXPR) \
00058 { \
00059 TYPE expl = (EXPL); \
00060 TYPE expr = (EXPR); \
00061 if (!(expl OP expr)) \
00062 { \
00063 COH_THROW_STREAM (coherence::lang::IllegalStateException, \
00064 "ensuring: '" << #EXPL << ' ' << #OP << ' ' << \
00065 #EXPR << "'; result " << expl << " not " #OP << \
00066 ' ' << expr); \
00067 } \
00068 }
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 #define COH_ENSURE_EQUALITY(EXPRESSION, EXPECTED_RESULT) \
00080 COH_ENSURE_RELATION(size32_t, EXPRESSION, ==, EXPECTED_RESULT)
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090 #define COH_ENSURE(EXPRESSION) \
00091 COH_ENSURE_RELATION(bool, EXPRESSION, ==, true)
00092
00093 COH_CLOSE_NAMESPACE2
00094
00095 #endif // COH_ILLEGAL_STATE_EXCEPTION_HPP