Ice
3.9
Slice API Reference
Toggle main menu visibility
Loading...
Searching...
No Matches
IceGrid
Exception.ice
1
// Copyright (c) ZeroC, Inc.
2
3
#pragma once
4
5
[[
"cpp:dll-export:ICEGRID_API"
]]
6
[[
"cpp:doxygen:include:IceGrid/IceGrid.h"
]]
7
[[
"cpp:header-ext:h"
]]
8
9
[[
"cpp:include:IceGrid/Config.h"
]]
10
11
[[
"js:module:@zeroc/ice"
]]
12
13
#include "Ice/Identity.ice"
14
15
[
"java:identifier:com.zeroc.IceGrid"
]
16
module
IceGrid
17
{
18
/// The exception that is thrown when IceGrid does not know an application with the provided name.
19
exception
ApplicationNotExistException
20
{
21
/// The name of the application.
22
string
name
;
23
}
24
25
/// The exception that is thrown when IceGrid does not know a server with the provided server ID.
26
exception
ServerNotExistException
27
{
28
/// The server ID.
29
string
id
;
30
}
31
32
/// The exception that is thrown when a server failed to start.
33
exception
ServerStartException
34
{
35
/// The server ID.
36
string
id
;
37
38
/// The reason for the failure.
39
string
reason
;
40
}
41
42
/// The exception that is thrown when a server failed to stop.
43
exception
ServerStopException
44
{
45
/// The server ID.
46
string
id
;
47
48
/// The reason for the failure.
49
string
reason
;
50
}
51
52
/// The exception that is thrown when IceGrid does not know an object adapter with the provided adapter ID.
53
exception
AdapterNotExistException
54
{
55
/// The adapter ID.
56
string
id
;
57
}
58
59
/// The exception that is thrown when IceGrid does not know a node with the provided name.
60
exception
NodeNotExistException
61
{
62
/// The node name.
63
string
name
;
64
}
65
66
/// The exception that is thrown when IceGrid does not know a registry with the provided name.
67
exception
RegistryNotExistException
68
{
69
/// The registry name.
70
string
name
;
71
}
72
73
/// The exception that is thrown when the allocation of an object failed.
74
exception
AllocationException
75
{
76
/// The reason why the object couldn't be allocated.
77
string
reason
;
78
}
79
80
/// The exception that is thrown when the request to allocate an object times out.
81
exception
AllocationTimeoutException
extends
AllocationException
82
{
83
}
84
85
/// The exception that is thrown when a well-known object is already registered.
86
exception
ObjectExistsException
87
{
88
/// The identity of the object.
89
Ice::Identity
id
;
90
}
91
92
/// The exception that is thrown when a well-known object is not registered.
93
exception
ObjectNotRegisteredException
94
{
95
/// The identity of the object.
96
Ice::Identity
id
;
97
}
98
}
IceGrid::AdapterNotExistException::id
string id
The adapter ID.
Definition
Exception.ice:56
IceGrid::AdapterNotExistException
The exception that is thrown when IceGrid does not know an object adapter with the provided adapter I...
Definition
Exception.ice:54
IceGrid::AllocationException::reason
string reason
The reason why the object couldn't be allocated.
Definition
Exception.ice:77
IceGrid::AllocationException
The exception that is thrown when the allocation of an object failed.
Definition
Exception.ice:75
IceGrid::AllocationTimeoutException
The exception that is thrown when the request to allocate an object times out.
Definition
Exception.ice:82
IceGrid::ApplicationNotExistException::name
string name
The name of the application.
Definition
Exception.ice:22
IceGrid::ApplicationNotExistException
The exception that is thrown when IceGrid does not know an application with the provided name.
Definition
Exception.ice:20
IceGrid::NodeNotExistException::name
string name
The node name.
Definition
Exception.ice:63
IceGrid::NodeNotExistException
The exception that is thrown when IceGrid does not know a node with the provided name.
Definition
Exception.ice:61
IceGrid::ObjectExistsException::id
Ice::Identity id
The identity of the object.
Definition
Exception.ice:89
IceGrid::ObjectExistsException
The exception that is thrown when a well-known object is already registered.
Definition
Exception.ice:87
IceGrid::ObjectNotRegisteredException::id
Ice::Identity id
The identity of the object.
Definition
Exception.ice:96
IceGrid::ObjectNotRegisteredException
The exception that is thrown when a well-known object is not registered.
Definition
Exception.ice:94
IceGrid::RegistryNotExistException::name
string name
The registry name.
Definition
Exception.ice:70
IceGrid::RegistryNotExistException
The exception that is thrown when IceGrid does not know a registry with the provided name.
Definition
Exception.ice:68
IceGrid::ServerNotExistException::id
string id
The server ID.
Definition
Exception.ice:29
IceGrid::ServerNotExistException
The exception that is thrown when IceGrid does not know a server with the provided server ID.
Definition
Exception.ice:27
IceGrid::ServerStartException::id
string id
The server ID.
Definition
Exception.ice:36
IceGrid::ServerStartException::reason
string reason
The reason for the failure.
Definition
Exception.ice:39
IceGrid::ServerStartException
The exception that is thrown when a server failed to start.
Definition
Exception.ice:34
IceGrid::ServerStopException::reason
string reason
The reason for the failure.
Definition
Exception.ice:49
IceGrid::ServerStopException::id
string id
The server ID.
Definition
Exception.ice:46
IceGrid::ServerStopException
The exception that is thrown when a server failed to stop.
Definition
Exception.ice:44
IceGrid
Deploy and manage Ice servers.
Definition
Admin.ice:21
Ice::Identity
Represents the identity of an Ice object.
Definition
Identity.ice:29
Generated by
1.17.0