00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 #ifndef COH_ARITHMETIC_EXCEPTION_HPP
00017 #define COH_ARITHMETIC_EXCEPTION_HPP
00018 
00019 #include "coherence/lang/compatibility.hpp"
00020 
00021 #include "coherence/lang/String.hpp"
00022 #include "coherence/lang/RuntimeException.hpp"
00023 
00024 COH_OPEN_NAMESPACE2(coherence,lang)
00025 
00026 
00027 
00028 
00029 
00030 
00031 class COH_EXPORT ArithmeticException
00032     : public throwable_spec<ArithmeticException,
00033         extends<RuntimeException, std::domain_error> >
00034     {
00035     friend class factory<ArithmeticException>;
00036 
00037     
00038 
00039     protected:
00040 
00041 
00042 
00043 
00044 
00045 
00046         ArithmeticException(String::View vsMsg = String::NULL_STRING,
00047                 Exception::View vCause = NULL);
00048     };
00049 
00050 COH_CLOSE_NAMESPACE2
00051 
00052 #endif // COH_ARITHMETIC_EXCEPTION_HPP