Ice 3.8
C++ API Reference
Loading...
Searching...
No Matches
UserExceptionFactory.h
1// Copyright (c) ZeroC, Inc.
2
3#ifndef ICE_USER_EXCEPTION_FACTORY_H
4#define ICE_USER_EXCEPTION_FACTORY_H
5
6#include <functional>
7#include <string_view>
8
9namespace Ice
10{
11 /// Creates and throws a user exception.
12 using UserExceptionFactory = std::function<void(std::string_view)>;
13}
14
15#endif
std::function< void(std::string_view)> UserExceptionFactory
Creates and throws a user exception.
The Ice RPC framework.
Definition SampleEvent.h:59