// ********************************************************************** // // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_USER_EXCEPTION_FACTORY_H #define ICE_USER_EXCEPTION_FACTORY_H #include #include #include #ifdef ICE_CPP11_MAPPING namespace Ice { /** Creates and throws a user exception. */ using UserExceptionFactory = std::function; } namespace IceInternal { template void #ifdef NDEBUG defaultUserExceptionFactory(const std::string&) #else defaultUserExceptionFactory(const std::string& typeId) #endif { assert(typeId == E::ice_staticId()); throw E(); } } #else namespace Ice { /** * Creates and throws a user exception. * \headerfile Ice/Ice.h */ class ICE_API UserExceptionFactory : public IceUtil::Shared { public: virtual void createAndThrow(const ::std::string&) = 0; virtual ~UserExceptionFactory(); }; typedef ::IceUtil::Handle UserExceptionFactoryPtr; } namespace IceInternal { template class DefaultUserExceptionFactory : public Ice::UserExceptionFactory { public: DefaultUserExceptionFactory(const ::std::string& typeId) : _typeId(typeId) { } #ifdef NDEBUG virtual void createAndThrow(const ::std::string&) #else virtual void createAndThrow(const ::std::string& typeId) #endif { assert(typeId == _typeId); throw E(); } private: const ::std::string _typeId; }; } #endif #endif