Lines Matching refs:THROW_EXCEPTION
129 #define THROW_EXCEPTION(CLASS) ThrowException<CLASS>() macro
144 THROW_EXCEPTION(int); in generic_exceptions()
145 THROW_EXCEPTION(non_derived_exception); in generic_exceptions()
146 THROW_EXCEPTION(std::exception); // Ok in generic_exceptions()
147 THROW_EXCEPTION(derived_exception); // Ok in generic_exceptions()
148 THROW_EXCEPTION(deep_hierarchy); // Ok in generic_exceptions()
157 THROW_EXCEPTION(generic_exception<float>); // Ok in generic_exceptions()
165 THROW_EXCEPTION(bad_generic_exception<int>); in generic_exceptions()
166 THROW_EXCEPTION(bad_generic_exception<std::exception>); in generic_exceptions()
171 THROW_EXCEPTION(exotic_exception<non_derived_exception>); in generic_exceptions()
174 THROW_EXCEPTION(exotic_exception<derived_exception>); // Ok in generic_exceptions()