00001
00002
00003
00004
00005
00006
00007 #ifndef COH_ILLEGAL_ARGUMENT_EXCEPTION_HPP
00008 #define COH_ILLEGAL_ARGUMENT_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 class COH_EXPORT IllegalArgumentException
00023 : public throwable_spec<IllegalArgumentException,
00024 extends<RuntimeException, std::invalid_argument> >
00025 {
00026 friend class factory<IllegalArgumentException>;
00027
00028
00029
00030 protected:
00031
00032
00033
00034
00035
00036
00037
00038
00039 IllegalArgumentException(String::View vsMsg = String::null_string,
00040 Exception::View vCause = NULL);
00041 };
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 #define COH_ENSURE_PARAM_RELATION(PARAM, OP, VALUE) \
00056 if (!(PARAM OP VALUE)) \
00057 { \
00058 COH_THROW_STREAM (coherence::lang::IllegalArgumentException, \
00059 #PARAM << " is " << PARAM << "; must be " << #OP << " " << #VALUE); \
00060 }
00061
00062
00063
00064
00065
00066
00067
00068
00069 #define COH_ENSURE_PARAM(HANDLE) COH_ENSURE_PARAM_RELATION(HANDLE, !=, NULL)
00070
00071 COH_CLOSE_NAMESPACE2
00072
00073 #endif // COH_ILLEGAL_ARGUMENT_EXCEPTION_HPP