Ice 3.9
Slice API Reference
Loading...
Searching...
No Matches
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"]
16module IceGrid
17{
18 /// The exception that is thrown when IceGrid does not know an application with the provided name.
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.
27 {
28 /// The server ID.
29 string id;
30 }
31
32 /// The exception that is thrown when a server failed to start.
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.
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.
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.
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.
68 {
69 /// The registry name.
70 string name;
71 }
72
73 /// The exception that is thrown when the allocation of an object failed.
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.
84
85 /// The exception that is thrown when a well-known object is already registered.
87 {
88 /// The identity of the object.
90 }
91
92 /// The exception that is thrown when a well-known object is not registered.
94 {
95 /// The identity of the object.
97 }
98}
The exception that is thrown when IceGrid does not know an object adapter with the provided adapter I...
Definition Exception.ice:54
string reason
The reason why the object couldn't be allocated.
Definition Exception.ice:77
The exception that is thrown when the allocation of an object failed.
Definition Exception.ice:75
The exception that is thrown when the request to allocate an object times out.
Definition Exception.ice:82
string name
The name of the application.
Definition Exception.ice:22
The exception that is thrown when IceGrid does not know an application with the provided name.
Definition Exception.ice:20
string name
The node name.
Definition Exception.ice:63
The exception that is thrown when IceGrid does not know a node with the provided name.
Definition Exception.ice:61
Ice::Identity id
The identity of the object.
Definition Exception.ice:89
The exception that is thrown when a well-known object is already registered.
Definition Exception.ice:87
Ice::Identity id
The identity of the object.
Definition Exception.ice:96
The exception that is thrown when a well-known object is not registered.
Definition Exception.ice:94
string name
The registry name.
Definition Exception.ice:70
The exception that is thrown when IceGrid does not know a registry with the provided name.
Definition Exception.ice:68
The exception that is thrown when IceGrid does not know a server with the provided server ID.
Definition Exception.ice:27
string id
The server ID.
Definition Exception.ice:36
string reason
The reason for the failure.
Definition Exception.ice:39
The exception that is thrown when a server failed to start.
Definition Exception.ice:34
string reason
The reason for the failure.
Definition Exception.ice:49
string id
The server ID.
Definition Exception.ice:46
The exception that is thrown when a server failed to stop.
Definition Exception.ice:44
Deploy and manage Ice servers.
Definition Admin.ice:21
Represents the identity of an Ice object.
Definition Identity.ice:26