zeroc-ice-x86-mingw 3.6b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ICE_LICENSE +54 -0
- data/LICENSE +339 -0
- data/bin/slice2rb +17 -0
- data/ice-x86-mingw.gemspec +41 -0
- data/lib/Glacier2.rb +12 -0
- data/lib/Glacier2/Metrics.rb +99 -0
- data/lib/Glacier2/PermissionsVerifier.rb +168 -0
- data/lib/Glacier2/PermissionsVerifierF.rb +34 -0
- data/lib/Glacier2/Router.rb +141 -0
- data/lib/Glacier2/RouterF.rb +29 -0
- data/lib/Glacier2/SSLInfo.rb +79 -0
- data/lib/Glacier2/Session.rb +470 -0
- data/lib/Ice.rb +659 -0
- data/lib/Ice/BuiltinSequences.rb +64 -0
- data/lib/Ice/Communicator.rb +93 -0
- data/lib/Ice/CommunicatorF.rb +28 -0
- data/lib/Ice/Connection.rb +414 -0
- data/lib/Ice/ConnectionF.rb +36 -0
- data/lib/Ice/Current.rb +152 -0
- data/lib/Ice/Endpoint.rb +265 -0
- data/lib/Ice/EndpointF.rb +52 -0
- data/lib/Ice/EndpointTypes.rb +77 -0
- data/lib/Ice/FacetMap.rb +28 -0
- data/lib/Ice/Identity.rb +70 -0
- data/lib/Ice/ImplicitContext.rb +59 -0
- data/lib/Ice/ImplicitContextF.rb +28 -0
- data/lib/Ice/Instrumentation.rb +425 -0
- data/lib/Ice/InstrumentationF.rb +35 -0
- data/lib/Ice/LocalException.rb +1081 -0
- data/lib/Ice/Locator.rb +314 -0
- data/lib/Ice/LocatorF.rb +34 -0
- data/lib/Ice/Logger.rb +57 -0
- data/lib/Ice/LoggerF.rb +28 -0
- data/lib/Ice/Metrics.rb +696 -0
- data/lib/Ice/ObjectAdapterF.rb +28 -0
- data/lib/Ice/ObjectFactory.rb +53 -0
- data/lib/Ice/ObjectFactoryF.rb +28 -0
- data/lib/Ice/Plugin.rb +87 -0
- data/lib/Ice/PluginF.rb +32 -0
- data/lib/Ice/Process.rb +93 -0
- data/lib/Ice/ProcessF.rb +29 -0
- data/lib/Ice/Properties.rb +65 -0
- data/lib/Ice/PropertiesAdmin.rb +104 -0
- data/lib/Ice/PropertiesF.rb +33 -0
- data/lib/Ice/Router.rb +163 -0
- data/lib/Ice/RouterF.rb +29 -0
- data/lib/Ice/SliceChecksumDict.rb +28 -0
- data/lib/Ice/Version.rb +100 -0
- data/lib/IceBox.rb +10 -0
- data/lib/IceBox/IceBox.rb +272 -0
- data/lib/IceGrid.rb +17 -0
- data/lib/IceGrid/Admin.rb +1076 -0
- data/lib/IceGrid/Descriptor.rb +1505 -0
- data/lib/IceGrid/Exception.rb +401 -0
- data/lib/IceGrid/FileParser.rb +105 -0
- data/lib/IceGrid/Locator.rb +105 -0
- data/lib/IceGrid/Observer.rb +571 -0
- data/lib/IceGrid/Query.rb +168 -0
- data/lib/IceGrid/Registry.rb +120 -0
- data/lib/IceGrid/Session.rb +114 -0
- data/lib/IceGrid/UserAccountMapper.rb +101 -0
- data/lib/IcePatch2.rb +10 -0
- data/lib/IcePatch2/FileInfo.rb +75 -0
- data/lib/IcePatch2/FileServer.rb +141 -0
- data/lib/IceRuby.so +0 -0
- data/lib/IceStorm.rb +11 -0
- data/lib/IceStorm/IceStorm.rb +463 -0
- data/lib/IceStorm/Metrics.rb +155 -0
- data/slice/Freeze/BackgroundSaveEvictor.ice +111 -0
- data/slice/Freeze/CatalogData.ice +49 -0
- data/slice/Freeze/Connection.ice +111 -0
- data/slice/Freeze/ConnectionF.ice +20 -0
- data/slice/Freeze/DB.ice +37 -0
- data/slice/Freeze/Evictor.ice +339 -0
- data/slice/Freeze/EvictorF.ice +22 -0
- data/slice/Freeze/EvictorStorage.ice +72 -0
- data/slice/Freeze/Exception.ice +100 -0
- data/slice/Freeze/Transaction.ice +57 -0
- data/slice/Freeze/TransactionalEvictor.ice +50 -0
- data/slice/Glacier2/Metrics.ice +77 -0
- data/slice/Glacier2/PermissionsVerifier.ice +105 -0
- data/slice/Glacier2/PermissionsVerifierF.ice +21 -0
- data/slice/Glacier2/Router.ice +178 -0
- data/slice/Glacier2/RouterF.ice +20 -0
- data/slice/Glacier2/SSLInfo.ice +50 -0
- data/slice/Glacier2/Session.ice +273 -0
- data/slice/Ice/BuiltinSequences.ice +48 -0
- data/slice/Ice/Communicator.ice +567 -0
- data/slice/Ice/CommunicatorF.ice +20 -0
- data/slice/Ice/Connection.ice +323 -0
- data/slice/Ice/ConnectionF.ice +22 -0
- data/slice/Ice/Current.ice +160 -0
- data/slice/Ice/Endpoint.ice +227 -0
- data/slice/Ice/EndpointF.ice +32 -0
- data/slice/Ice/EndpointTypes.ice +38 -0
- data/slice/Ice/FacetMap.ice +25 -0
- data/slice/Ice/Identity.ice +59 -0
- data/slice/Ice/ImplicitContext.ice +109 -0
- data/slice/Ice/ImplicitContextF.ice +20 -0
- data/slice/Ice/Instrumentation.ice +499 -0
- data/slice/Ice/InstrumentationF.ice +26 -0
- data/slice/Ice/LocalException.ice +1015 -0
- data/slice/Ice/Locator.ice +227 -0
- data/slice/Ice/LocatorF.ice +21 -0
- data/slice/Ice/Logger.ice +86 -0
- data/slice/Ice/LoggerF.ice +20 -0
- data/slice/Ice/Metrics.ice +422 -0
- data/slice/Ice/ObjectAdapter.ice +673 -0
- data/slice/Ice/ObjectAdapterF.ice +20 -0
- data/slice/Ice/ObjectFactory.ice +60 -0
- data/slice/Ice/ObjectFactoryF.ice +20 -0
- data/slice/Ice/Plugin.ice +117 -0
- data/slice/Ice/PluginF.ice +21 -0
- data/slice/Ice/Process.ice +54 -0
- data/slice/Ice/ProcessF.ice +20 -0
- data/slice/Ice/Properties.ice +228 -0
- data/slice/Ice/PropertiesAdmin.ice +75 -0
- data/slice/Ice/PropertiesF.ice +21 -0
- data/slice/Ice/RemoteLogger.ice +232 -0
- data/slice/Ice/Router.ice +83 -0
- data/slice/Ice/RouterF.ice +20 -0
- data/slice/Ice/ServantLocator.ice +117 -0
- data/slice/Ice/ServantLocatorF.ice +20 -0
- data/slice/Ice/SliceChecksumDict.ice +25 -0
- data/slice/Ice/Version.ice +39 -0
- data/slice/IceBox/IceBox.ice +194 -0
- data/slice/IceDiscovery/IceDiscovery.ice +32 -0
- data/slice/IceGrid/Admin.ice +1578 -0
- data/slice/IceGrid/Descriptor.ice +1079 -0
- data/slice/IceGrid/Discovery.ice +73 -0
- data/slice/IceGrid/Exception.ice +383 -0
- data/slice/IceGrid/FileParser.ice +61 -0
- data/slice/IceGrid/Locator.ice +56 -0
- data/slice/IceGrid/Observer.ice +394 -0
- data/slice/IceGrid/PluginFacade.ice +316 -0
- data/slice/IceGrid/Query.ice +130 -0
- data/slice/IceGrid/Registry.ice +138 -0
- data/slice/IceGrid/Session.ice +124 -0
- data/slice/IceGrid/UserAccountMapper.ice +58 -0
- data/slice/IcePatch2/FileInfo.ice +49 -0
- data/slice/IcePatch2/FileServer.ice +129 -0
- data/slice/IceSSL/ConnectionInfo.ice +34 -0
- data/slice/IceSSL/EndpointInfo.ice +41 -0
- data/slice/IceStorm/IceStorm.ice +405 -0
- data/slice/IceStorm/Metrics.ice +71 -0
- metadata +207 -0
@@ -0,0 +1,35 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `InstrumentationF.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
module Instrumentation
|
26
|
+
|
27
|
+
if not defined?(::Ice::Instrumentation::T_Observer)
|
28
|
+
T_Observer = ::Ice::__declareLocalClass('::Ice::Instrumentation::Observer')
|
29
|
+
end
|
30
|
+
|
31
|
+
if not defined?(::Ice::Instrumentation::T_CommunicatorObserver)
|
32
|
+
T_CommunicatorObserver = ::Ice::__declareLocalClass('::Ice::Instrumentation::CommunicatorObserver')
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,1081 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `LocalException.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/Identity.rb'
|
23
|
+
require 'Ice/Version.rb'
|
24
|
+
require 'Ice/BuiltinSequences.rb'
|
25
|
+
|
26
|
+
module Ice
|
27
|
+
|
28
|
+
if not defined?(::Ice::InitializationException)
|
29
|
+
class InitializationException < Ice::LocalException
|
30
|
+
def initialize(reason='')
|
31
|
+
@reason = reason
|
32
|
+
end
|
33
|
+
|
34
|
+
def to_s
|
35
|
+
'Ice::InitializationException'
|
36
|
+
end
|
37
|
+
|
38
|
+
attr_accessor :reason
|
39
|
+
end
|
40
|
+
|
41
|
+
T_InitializationException = ::Ice::__defineException('::Ice::InitializationException', InitializationException, false, nil, [["reason", ::Ice::T_string, false, 0]])
|
42
|
+
InitializationException::ICE_TYPE = T_InitializationException
|
43
|
+
end
|
44
|
+
|
45
|
+
if not defined?(::Ice::PluginInitializationException)
|
46
|
+
class PluginInitializationException < Ice::LocalException
|
47
|
+
def initialize(reason='')
|
48
|
+
@reason = reason
|
49
|
+
end
|
50
|
+
|
51
|
+
def to_s
|
52
|
+
'Ice::PluginInitializationException'
|
53
|
+
end
|
54
|
+
|
55
|
+
attr_accessor :reason
|
56
|
+
end
|
57
|
+
|
58
|
+
T_PluginInitializationException = ::Ice::__defineException('::Ice::PluginInitializationException', PluginInitializationException, false, nil, [["reason", ::Ice::T_string, false, 0]])
|
59
|
+
PluginInitializationException::ICE_TYPE = T_PluginInitializationException
|
60
|
+
end
|
61
|
+
|
62
|
+
if not defined?(::Ice::CollocationOptimizationException)
|
63
|
+
class CollocationOptimizationException < Ice::LocalException
|
64
|
+
def initialize
|
65
|
+
end
|
66
|
+
|
67
|
+
def to_s
|
68
|
+
'Ice::CollocationOptimizationException'
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
T_CollocationOptimizationException = ::Ice::__defineException('::Ice::CollocationOptimizationException', CollocationOptimizationException, false, nil, [])
|
73
|
+
CollocationOptimizationException::ICE_TYPE = T_CollocationOptimizationException
|
74
|
+
end
|
75
|
+
|
76
|
+
if not defined?(::Ice::AlreadyRegisteredException)
|
77
|
+
class AlreadyRegisteredException < Ice::LocalException
|
78
|
+
def initialize(kindOfObject='', id='')
|
79
|
+
@kindOfObject = kindOfObject
|
80
|
+
@id = id
|
81
|
+
end
|
82
|
+
|
83
|
+
def to_s
|
84
|
+
'Ice::AlreadyRegisteredException'
|
85
|
+
end
|
86
|
+
|
87
|
+
attr_accessor :kindOfObject, :id
|
88
|
+
end
|
89
|
+
|
90
|
+
T_AlreadyRegisteredException = ::Ice::__defineException('::Ice::AlreadyRegisteredException', AlreadyRegisteredException, false, nil, [
|
91
|
+
["kindOfObject", ::Ice::T_string, false, 0],
|
92
|
+
["id", ::Ice::T_string, false, 0]
|
93
|
+
])
|
94
|
+
AlreadyRegisteredException::ICE_TYPE = T_AlreadyRegisteredException
|
95
|
+
end
|
96
|
+
|
97
|
+
if not defined?(::Ice::NotRegisteredException)
|
98
|
+
class NotRegisteredException < Ice::LocalException
|
99
|
+
def initialize(kindOfObject='', id='')
|
100
|
+
@kindOfObject = kindOfObject
|
101
|
+
@id = id
|
102
|
+
end
|
103
|
+
|
104
|
+
def to_s
|
105
|
+
'Ice::NotRegisteredException'
|
106
|
+
end
|
107
|
+
|
108
|
+
attr_accessor :kindOfObject, :id
|
109
|
+
end
|
110
|
+
|
111
|
+
T_NotRegisteredException = ::Ice::__defineException('::Ice::NotRegisteredException', NotRegisteredException, false, nil, [
|
112
|
+
["kindOfObject", ::Ice::T_string, false, 0],
|
113
|
+
["id", ::Ice::T_string, false, 0]
|
114
|
+
])
|
115
|
+
NotRegisteredException::ICE_TYPE = T_NotRegisteredException
|
116
|
+
end
|
117
|
+
|
118
|
+
if not defined?(::Ice::TwowayOnlyException)
|
119
|
+
class TwowayOnlyException < Ice::LocalException
|
120
|
+
def initialize(operation='')
|
121
|
+
@operation = operation
|
122
|
+
end
|
123
|
+
|
124
|
+
def to_s
|
125
|
+
'Ice::TwowayOnlyException'
|
126
|
+
end
|
127
|
+
|
128
|
+
attr_accessor :operation
|
129
|
+
end
|
130
|
+
|
131
|
+
T_TwowayOnlyException = ::Ice::__defineException('::Ice::TwowayOnlyException', TwowayOnlyException, false, nil, [["operation", ::Ice::T_string, false, 0]])
|
132
|
+
TwowayOnlyException::ICE_TYPE = T_TwowayOnlyException
|
133
|
+
end
|
134
|
+
|
135
|
+
if not defined?(::Ice::CloneNotImplementedException)
|
136
|
+
class CloneNotImplementedException < Ice::LocalException
|
137
|
+
def initialize
|
138
|
+
end
|
139
|
+
|
140
|
+
def to_s
|
141
|
+
'Ice::CloneNotImplementedException'
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
T_CloneNotImplementedException = ::Ice::__defineException('::Ice::CloneNotImplementedException', CloneNotImplementedException, false, nil, [])
|
146
|
+
CloneNotImplementedException::ICE_TYPE = T_CloneNotImplementedException
|
147
|
+
end
|
148
|
+
|
149
|
+
if not defined?(::Ice::UnknownException)
|
150
|
+
class UnknownException < Ice::LocalException
|
151
|
+
def initialize(unknown='')
|
152
|
+
@unknown = unknown
|
153
|
+
end
|
154
|
+
|
155
|
+
def to_s
|
156
|
+
'Ice::UnknownException'
|
157
|
+
end
|
158
|
+
|
159
|
+
attr_accessor :unknown
|
160
|
+
end
|
161
|
+
|
162
|
+
T_UnknownException = ::Ice::__defineException('::Ice::UnknownException', UnknownException, false, nil, [["unknown", ::Ice::T_string, false, 0]])
|
163
|
+
UnknownException::ICE_TYPE = T_UnknownException
|
164
|
+
end
|
165
|
+
|
166
|
+
if not defined?(::Ice::UnknownLocalException)
|
167
|
+
class UnknownLocalException < ::Ice::UnknownException
|
168
|
+
def initialize(unknown='')
|
169
|
+
super(unknown)
|
170
|
+
end
|
171
|
+
|
172
|
+
def to_s
|
173
|
+
'Ice::UnknownLocalException'
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
T_UnknownLocalException = ::Ice::__defineException('::Ice::UnknownLocalException', UnknownLocalException, false, ::Ice::T_UnknownException, [])
|
178
|
+
UnknownLocalException::ICE_TYPE = T_UnknownLocalException
|
179
|
+
end
|
180
|
+
|
181
|
+
if not defined?(::Ice::UnknownUserException)
|
182
|
+
class UnknownUserException < ::Ice::UnknownException
|
183
|
+
def initialize(unknown='')
|
184
|
+
super(unknown)
|
185
|
+
end
|
186
|
+
|
187
|
+
def to_s
|
188
|
+
'Ice::UnknownUserException'
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
T_UnknownUserException = ::Ice::__defineException('::Ice::UnknownUserException', UnknownUserException, false, ::Ice::T_UnknownException, [])
|
193
|
+
UnknownUserException::ICE_TYPE = T_UnknownUserException
|
194
|
+
end
|
195
|
+
|
196
|
+
if not defined?(::Ice::VersionMismatchException)
|
197
|
+
class VersionMismatchException < Ice::LocalException
|
198
|
+
def initialize
|
199
|
+
end
|
200
|
+
|
201
|
+
def to_s
|
202
|
+
'Ice::VersionMismatchException'
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
T_VersionMismatchException = ::Ice::__defineException('::Ice::VersionMismatchException', VersionMismatchException, false, nil, [])
|
207
|
+
VersionMismatchException::ICE_TYPE = T_VersionMismatchException
|
208
|
+
end
|
209
|
+
|
210
|
+
if not defined?(::Ice::CommunicatorDestroyedException)
|
211
|
+
class CommunicatorDestroyedException < Ice::LocalException
|
212
|
+
def initialize
|
213
|
+
end
|
214
|
+
|
215
|
+
def to_s
|
216
|
+
'Ice::CommunicatorDestroyedException'
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
T_CommunicatorDestroyedException = ::Ice::__defineException('::Ice::CommunicatorDestroyedException', CommunicatorDestroyedException, false, nil, [])
|
221
|
+
CommunicatorDestroyedException::ICE_TYPE = T_CommunicatorDestroyedException
|
222
|
+
end
|
223
|
+
|
224
|
+
if not defined?(::Ice::ObjectAdapterDeactivatedException)
|
225
|
+
class ObjectAdapterDeactivatedException < Ice::LocalException
|
226
|
+
def initialize(name='')
|
227
|
+
@name = name
|
228
|
+
end
|
229
|
+
|
230
|
+
def to_s
|
231
|
+
'Ice::ObjectAdapterDeactivatedException'
|
232
|
+
end
|
233
|
+
|
234
|
+
attr_accessor :name
|
235
|
+
end
|
236
|
+
|
237
|
+
T_ObjectAdapterDeactivatedException = ::Ice::__defineException('::Ice::ObjectAdapterDeactivatedException', ObjectAdapterDeactivatedException, false, nil, [["name", ::Ice::T_string, false, 0]])
|
238
|
+
ObjectAdapterDeactivatedException::ICE_TYPE = T_ObjectAdapterDeactivatedException
|
239
|
+
end
|
240
|
+
|
241
|
+
if not defined?(::Ice::ObjectAdapterIdInUseException)
|
242
|
+
class ObjectAdapterIdInUseException < Ice::LocalException
|
243
|
+
def initialize(id='')
|
244
|
+
@id = id
|
245
|
+
end
|
246
|
+
|
247
|
+
def to_s
|
248
|
+
'Ice::ObjectAdapterIdInUseException'
|
249
|
+
end
|
250
|
+
|
251
|
+
attr_accessor :id
|
252
|
+
end
|
253
|
+
|
254
|
+
T_ObjectAdapterIdInUseException = ::Ice::__defineException('::Ice::ObjectAdapterIdInUseException', ObjectAdapterIdInUseException, false, nil, [["id", ::Ice::T_string, false, 0]])
|
255
|
+
ObjectAdapterIdInUseException::ICE_TYPE = T_ObjectAdapterIdInUseException
|
256
|
+
end
|
257
|
+
|
258
|
+
if not defined?(::Ice::NoEndpointException)
|
259
|
+
class NoEndpointException < Ice::LocalException
|
260
|
+
def initialize(proxy='')
|
261
|
+
@proxy = proxy
|
262
|
+
end
|
263
|
+
|
264
|
+
def to_s
|
265
|
+
'Ice::NoEndpointException'
|
266
|
+
end
|
267
|
+
|
268
|
+
attr_accessor :proxy
|
269
|
+
end
|
270
|
+
|
271
|
+
T_NoEndpointException = ::Ice::__defineException('::Ice::NoEndpointException', NoEndpointException, false, nil, [["proxy", ::Ice::T_string, false, 0]])
|
272
|
+
NoEndpointException::ICE_TYPE = T_NoEndpointException
|
273
|
+
end
|
274
|
+
|
275
|
+
if not defined?(::Ice::EndpointParseException)
|
276
|
+
class EndpointParseException < Ice::LocalException
|
277
|
+
def initialize(str='')
|
278
|
+
@str = str
|
279
|
+
end
|
280
|
+
|
281
|
+
def to_s
|
282
|
+
'Ice::EndpointParseException'
|
283
|
+
end
|
284
|
+
|
285
|
+
attr_accessor :str
|
286
|
+
end
|
287
|
+
|
288
|
+
T_EndpointParseException = ::Ice::__defineException('::Ice::EndpointParseException', EndpointParseException, false, nil, [["str", ::Ice::T_string, false, 0]])
|
289
|
+
EndpointParseException::ICE_TYPE = T_EndpointParseException
|
290
|
+
end
|
291
|
+
|
292
|
+
if not defined?(::Ice::EndpointSelectionTypeParseException)
|
293
|
+
class EndpointSelectionTypeParseException < Ice::LocalException
|
294
|
+
def initialize(str='')
|
295
|
+
@str = str
|
296
|
+
end
|
297
|
+
|
298
|
+
def to_s
|
299
|
+
'Ice::EndpointSelectionTypeParseException'
|
300
|
+
end
|
301
|
+
|
302
|
+
attr_accessor :str
|
303
|
+
end
|
304
|
+
|
305
|
+
T_EndpointSelectionTypeParseException = ::Ice::__defineException('::Ice::EndpointSelectionTypeParseException', EndpointSelectionTypeParseException, false, nil, [["str", ::Ice::T_string, false, 0]])
|
306
|
+
EndpointSelectionTypeParseException::ICE_TYPE = T_EndpointSelectionTypeParseException
|
307
|
+
end
|
308
|
+
|
309
|
+
if not defined?(::Ice::VersionParseException)
|
310
|
+
class VersionParseException < Ice::LocalException
|
311
|
+
def initialize(str='')
|
312
|
+
@str = str
|
313
|
+
end
|
314
|
+
|
315
|
+
def to_s
|
316
|
+
'Ice::VersionParseException'
|
317
|
+
end
|
318
|
+
|
319
|
+
attr_accessor :str
|
320
|
+
end
|
321
|
+
|
322
|
+
T_VersionParseException = ::Ice::__defineException('::Ice::VersionParseException', VersionParseException, false, nil, [["str", ::Ice::T_string, false, 0]])
|
323
|
+
VersionParseException::ICE_TYPE = T_VersionParseException
|
324
|
+
end
|
325
|
+
|
326
|
+
if not defined?(::Ice::IdentityParseException)
|
327
|
+
class IdentityParseException < Ice::LocalException
|
328
|
+
def initialize(str='')
|
329
|
+
@str = str
|
330
|
+
end
|
331
|
+
|
332
|
+
def to_s
|
333
|
+
'Ice::IdentityParseException'
|
334
|
+
end
|
335
|
+
|
336
|
+
attr_accessor :str
|
337
|
+
end
|
338
|
+
|
339
|
+
T_IdentityParseException = ::Ice::__defineException('::Ice::IdentityParseException', IdentityParseException, false, nil, [["str", ::Ice::T_string, false, 0]])
|
340
|
+
IdentityParseException::ICE_TYPE = T_IdentityParseException
|
341
|
+
end
|
342
|
+
|
343
|
+
if not defined?(::Ice::ProxyParseException)
|
344
|
+
class ProxyParseException < Ice::LocalException
|
345
|
+
def initialize(str='')
|
346
|
+
@str = str
|
347
|
+
end
|
348
|
+
|
349
|
+
def to_s
|
350
|
+
'Ice::ProxyParseException'
|
351
|
+
end
|
352
|
+
|
353
|
+
attr_accessor :str
|
354
|
+
end
|
355
|
+
|
356
|
+
T_ProxyParseException = ::Ice::__defineException('::Ice::ProxyParseException', ProxyParseException, false, nil, [["str", ::Ice::T_string, false, 0]])
|
357
|
+
ProxyParseException::ICE_TYPE = T_ProxyParseException
|
358
|
+
end
|
359
|
+
|
360
|
+
if not defined?(::Ice::IllegalIdentityException)
|
361
|
+
class IllegalIdentityException < Ice::LocalException
|
362
|
+
def initialize(id=::Ice::Identity.new)
|
363
|
+
@id = id
|
364
|
+
end
|
365
|
+
|
366
|
+
def to_s
|
367
|
+
'Ice::IllegalIdentityException'
|
368
|
+
end
|
369
|
+
|
370
|
+
attr_accessor :id
|
371
|
+
end
|
372
|
+
|
373
|
+
T_IllegalIdentityException = ::Ice::__defineException('::Ice::IllegalIdentityException', IllegalIdentityException, false, nil, [["id", ::Ice::T_Identity, false, 0]])
|
374
|
+
IllegalIdentityException::ICE_TYPE = T_IllegalIdentityException
|
375
|
+
end
|
376
|
+
|
377
|
+
if not defined?(::Ice::IllegalServantException)
|
378
|
+
class IllegalServantException < Ice::LocalException
|
379
|
+
def initialize(reason='')
|
380
|
+
@reason = reason
|
381
|
+
end
|
382
|
+
|
383
|
+
def to_s
|
384
|
+
'Ice::IllegalServantException'
|
385
|
+
end
|
386
|
+
|
387
|
+
attr_accessor :reason
|
388
|
+
end
|
389
|
+
|
390
|
+
T_IllegalServantException = ::Ice::__defineException('::Ice::IllegalServantException', IllegalServantException, false, nil, [["reason", ::Ice::T_string, false, 0]])
|
391
|
+
IllegalServantException::ICE_TYPE = T_IllegalServantException
|
392
|
+
end
|
393
|
+
|
394
|
+
if not defined?(::Ice::RequestFailedException)
|
395
|
+
class RequestFailedException < Ice::LocalException
|
396
|
+
def initialize(id=::Ice::Identity.new, facet='', operation='')
|
397
|
+
@id = id
|
398
|
+
@facet = facet
|
399
|
+
@operation = operation
|
400
|
+
end
|
401
|
+
|
402
|
+
def to_s
|
403
|
+
'Ice::RequestFailedException'
|
404
|
+
end
|
405
|
+
|
406
|
+
attr_accessor :id, :facet, :operation
|
407
|
+
end
|
408
|
+
|
409
|
+
T_RequestFailedException = ::Ice::__defineException('::Ice::RequestFailedException', RequestFailedException, false, nil, [
|
410
|
+
["id", ::Ice::T_Identity, false, 0],
|
411
|
+
["facet", ::Ice::T_string, false, 0],
|
412
|
+
["operation", ::Ice::T_string, false, 0]
|
413
|
+
])
|
414
|
+
RequestFailedException::ICE_TYPE = T_RequestFailedException
|
415
|
+
end
|
416
|
+
|
417
|
+
if not defined?(::Ice::ObjectNotExistException)
|
418
|
+
class ObjectNotExistException < ::Ice::RequestFailedException
|
419
|
+
def initialize(id=::Ice::Identity.new, facet='', operation='')
|
420
|
+
super(id, facet, operation)
|
421
|
+
end
|
422
|
+
|
423
|
+
def to_s
|
424
|
+
'Ice::ObjectNotExistException'
|
425
|
+
end
|
426
|
+
end
|
427
|
+
|
428
|
+
T_ObjectNotExistException = ::Ice::__defineException('::Ice::ObjectNotExistException', ObjectNotExistException, false, ::Ice::T_RequestFailedException, [])
|
429
|
+
ObjectNotExistException::ICE_TYPE = T_ObjectNotExistException
|
430
|
+
end
|
431
|
+
|
432
|
+
if not defined?(::Ice::FacetNotExistException)
|
433
|
+
class FacetNotExistException < ::Ice::RequestFailedException
|
434
|
+
def initialize(id=::Ice::Identity.new, facet='', operation='')
|
435
|
+
super(id, facet, operation)
|
436
|
+
end
|
437
|
+
|
438
|
+
def to_s
|
439
|
+
'Ice::FacetNotExistException'
|
440
|
+
end
|
441
|
+
end
|
442
|
+
|
443
|
+
T_FacetNotExistException = ::Ice::__defineException('::Ice::FacetNotExistException', FacetNotExistException, false, ::Ice::T_RequestFailedException, [])
|
444
|
+
FacetNotExistException::ICE_TYPE = T_FacetNotExistException
|
445
|
+
end
|
446
|
+
|
447
|
+
if not defined?(::Ice::OperationNotExistException)
|
448
|
+
class OperationNotExistException < ::Ice::RequestFailedException
|
449
|
+
def initialize(id=::Ice::Identity.new, facet='', operation='')
|
450
|
+
super(id, facet, operation)
|
451
|
+
end
|
452
|
+
|
453
|
+
def to_s
|
454
|
+
'Ice::OperationNotExistException'
|
455
|
+
end
|
456
|
+
end
|
457
|
+
|
458
|
+
T_OperationNotExistException = ::Ice::__defineException('::Ice::OperationNotExistException', OperationNotExistException, false, ::Ice::T_RequestFailedException, [])
|
459
|
+
OperationNotExistException::ICE_TYPE = T_OperationNotExistException
|
460
|
+
end
|
461
|
+
|
462
|
+
if not defined?(::Ice::SyscallException)
|
463
|
+
class SyscallException < Ice::LocalException
|
464
|
+
def initialize(error=0)
|
465
|
+
@error = error
|
466
|
+
end
|
467
|
+
|
468
|
+
def to_s
|
469
|
+
'Ice::SyscallException'
|
470
|
+
end
|
471
|
+
|
472
|
+
attr_accessor :error
|
473
|
+
end
|
474
|
+
|
475
|
+
T_SyscallException = ::Ice::__defineException('::Ice::SyscallException', SyscallException, false, nil, [["error", ::Ice::T_int, false, 0]])
|
476
|
+
SyscallException::ICE_TYPE = T_SyscallException
|
477
|
+
end
|
478
|
+
|
479
|
+
if not defined?(::Ice::SocketException)
|
480
|
+
class SocketException < ::Ice::SyscallException
|
481
|
+
def initialize(error=0)
|
482
|
+
super(error)
|
483
|
+
end
|
484
|
+
|
485
|
+
def to_s
|
486
|
+
'Ice::SocketException'
|
487
|
+
end
|
488
|
+
end
|
489
|
+
|
490
|
+
T_SocketException = ::Ice::__defineException('::Ice::SocketException', SocketException, false, ::Ice::T_SyscallException, [])
|
491
|
+
SocketException::ICE_TYPE = T_SocketException
|
492
|
+
end
|
493
|
+
|
494
|
+
if not defined?(::Ice::FileException)
|
495
|
+
class FileException < ::Ice::SyscallException
|
496
|
+
def initialize(error=0, path='')
|
497
|
+
super(error)
|
498
|
+
@path = path
|
499
|
+
end
|
500
|
+
|
501
|
+
def to_s
|
502
|
+
'Ice::FileException'
|
503
|
+
end
|
504
|
+
|
505
|
+
attr_accessor :path
|
506
|
+
end
|
507
|
+
|
508
|
+
T_FileException = ::Ice::__defineException('::Ice::FileException', FileException, false, ::Ice::T_SyscallException, [["path", ::Ice::T_string, false, 0]])
|
509
|
+
FileException::ICE_TYPE = T_FileException
|
510
|
+
end
|
511
|
+
|
512
|
+
if not defined?(::Ice::ConnectFailedException)
|
513
|
+
class ConnectFailedException < ::Ice::SocketException
|
514
|
+
def initialize(error=0)
|
515
|
+
super(error)
|
516
|
+
end
|
517
|
+
|
518
|
+
def to_s
|
519
|
+
'Ice::ConnectFailedException'
|
520
|
+
end
|
521
|
+
end
|
522
|
+
|
523
|
+
T_ConnectFailedException = ::Ice::__defineException('::Ice::ConnectFailedException', ConnectFailedException, false, ::Ice::T_SocketException, [])
|
524
|
+
ConnectFailedException::ICE_TYPE = T_ConnectFailedException
|
525
|
+
end
|
526
|
+
|
527
|
+
if not defined?(::Ice::ConnectionRefusedException)
|
528
|
+
class ConnectionRefusedException < ::Ice::ConnectFailedException
|
529
|
+
def initialize(error=0)
|
530
|
+
super(error)
|
531
|
+
end
|
532
|
+
|
533
|
+
def to_s
|
534
|
+
'Ice::ConnectionRefusedException'
|
535
|
+
end
|
536
|
+
end
|
537
|
+
|
538
|
+
T_ConnectionRefusedException = ::Ice::__defineException('::Ice::ConnectionRefusedException', ConnectionRefusedException, false, ::Ice::T_ConnectFailedException, [])
|
539
|
+
ConnectionRefusedException::ICE_TYPE = T_ConnectionRefusedException
|
540
|
+
end
|
541
|
+
|
542
|
+
if not defined?(::Ice::ConnectionLostException)
|
543
|
+
class ConnectionLostException < ::Ice::SocketException
|
544
|
+
def initialize(error=0)
|
545
|
+
super(error)
|
546
|
+
end
|
547
|
+
|
548
|
+
def to_s
|
549
|
+
'Ice::ConnectionLostException'
|
550
|
+
end
|
551
|
+
end
|
552
|
+
|
553
|
+
T_ConnectionLostException = ::Ice::__defineException('::Ice::ConnectionLostException', ConnectionLostException, false, ::Ice::T_SocketException, [])
|
554
|
+
ConnectionLostException::ICE_TYPE = T_ConnectionLostException
|
555
|
+
end
|
556
|
+
|
557
|
+
if not defined?(::Ice::DNSException)
|
558
|
+
class DNSException < Ice::LocalException
|
559
|
+
def initialize(error=0, host='')
|
560
|
+
@error = error
|
561
|
+
@host = host
|
562
|
+
end
|
563
|
+
|
564
|
+
def to_s
|
565
|
+
'Ice::DNSException'
|
566
|
+
end
|
567
|
+
|
568
|
+
attr_accessor :error, :host
|
569
|
+
end
|
570
|
+
|
571
|
+
T_DNSException = ::Ice::__defineException('::Ice::DNSException', DNSException, false, nil, [
|
572
|
+
["error", ::Ice::T_int, false, 0],
|
573
|
+
["host", ::Ice::T_string, false, 0]
|
574
|
+
])
|
575
|
+
DNSException::ICE_TYPE = T_DNSException
|
576
|
+
end
|
577
|
+
|
578
|
+
if not defined?(::Ice::OperationInterruptedException)
|
579
|
+
class OperationInterruptedException < Ice::LocalException
|
580
|
+
def initialize
|
581
|
+
end
|
582
|
+
|
583
|
+
def to_s
|
584
|
+
'Ice::OperationInterruptedException'
|
585
|
+
end
|
586
|
+
end
|
587
|
+
|
588
|
+
T_OperationInterruptedException = ::Ice::__defineException('::Ice::OperationInterruptedException', OperationInterruptedException, false, nil, [])
|
589
|
+
OperationInterruptedException::ICE_TYPE = T_OperationInterruptedException
|
590
|
+
end
|
591
|
+
|
592
|
+
if not defined?(::Ice::TimeoutException)
|
593
|
+
class TimeoutException < Ice::LocalException
|
594
|
+
def initialize
|
595
|
+
end
|
596
|
+
|
597
|
+
def to_s
|
598
|
+
'Ice::TimeoutException'
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
602
|
+
T_TimeoutException = ::Ice::__defineException('::Ice::TimeoutException', TimeoutException, false, nil, [])
|
603
|
+
TimeoutException::ICE_TYPE = T_TimeoutException
|
604
|
+
end
|
605
|
+
|
606
|
+
if not defined?(::Ice::ConnectTimeoutException)
|
607
|
+
class ConnectTimeoutException < ::Ice::TimeoutException
|
608
|
+
def initialize
|
609
|
+
end
|
610
|
+
|
611
|
+
def to_s
|
612
|
+
'Ice::ConnectTimeoutException'
|
613
|
+
end
|
614
|
+
end
|
615
|
+
|
616
|
+
T_ConnectTimeoutException = ::Ice::__defineException('::Ice::ConnectTimeoutException', ConnectTimeoutException, false, ::Ice::T_TimeoutException, [])
|
617
|
+
ConnectTimeoutException::ICE_TYPE = T_ConnectTimeoutException
|
618
|
+
end
|
619
|
+
|
620
|
+
if not defined?(::Ice::CloseTimeoutException)
|
621
|
+
class CloseTimeoutException < ::Ice::TimeoutException
|
622
|
+
def initialize
|
623
|
+
end
|
624
|
+
|
625
|
+
def to_s
|
626
|
+
'Ice::CloseTimeoutException'
|
627
|
+
end
|
628
|
+
end
|
629
|
+
|
630
|
+
T_CloseTimeoutException = ::Ice::__defineException('::Ice::CloseTimeoutException', CloseTimeoutException, false, ::Ice::T_TimeoutException, [])
|
631
|
+
CloseTimeoutException::ICE_TYPE = T_CloseTimeoutException
|
632
|
+
end
|
633
|
+
|
634
|
+
if not defined?(::Ice::ConnectionTimeoutException)
|
635
|
+
class ConnectionTimeoutException < ::Ice::TimeoutException
|
636
|
+
def initialize
|
637
|
+
end
|
638
|
+
|
639
|
+
def to_s
|
640
|
+
'Ice::ConnectionTimeoutException'
|
641
|
+
end
|
642
|
+
end
|
643
|
+
|
644
|
+
T_ConnectionTimeoutException = ::Ice::__defineException('::Ice::ConnectionTimeoutException', ConnectionTimeoutException, false, ::Ice::T_TimeoutException, [])
|
645
|
+
ConnectionTimeoutException::ICE_TYPE = T_ConnectionTimeoutException
|
646
|
+
end
|
647
|
+
|
648
|
+
if not defined?(::Ice::InvocationTimeoutException)
|
649
|
+
class InvocationTimeoutException < ::Ice::TimeoutException
|
650
|
+
def initialize
|
651
|
+
end
|
652
|
+
|
653
|
+
def to_s
|
654
|
+
'Ice::InvocationTimeoutException'
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
T_InvocationTimeoutException = ::Ice::__defineException('::Ice::InvocationTimeoutException', InvocationTimeoutException, false, ::Ice::T_TimeoutException, [])
|
659
|
+
InvocationTimeoutException::ICE_TYPE = T_InvocationTimeoutException
|
660
|
+
end
|
661
|
+
|
662
|
+
if not defined?(::Ice::InvocationCanceledException)
|
663
|
+
class InvocationCanceledException < Ice::LocalException
|
664
|
+
def initialize
|
665
|
+
end
|
666
|
+
|
667
|
+
def to_s
|
668
|
+
'Ice::InvocationCanceledException'
|
669
|
+
end
|
670
|
+
end
|
671
|
+
|
672
|
+
T_InvocationCanceledException = ::Ice::__defineException('::Ice::InvocationCanceledException', InvocationCanceledException, false, nil, [])
|
673
|
+
InvocationCanceledException::ICE_TYPE = T_InvocationCanceledException
|
674
|
+
end
|
675
|
+
|
676
|
+
if not defined?(::Ice::ProtocolException)
|
677
|
+
class ProtocolException < Ice::LocalException
|
678
|
+
def initialize(reason='')
|
679
|
+
@reason = reason
|
680
|
+
end
|
681
|
+
|
682
|
+
def to_s
|
683
|
+
'Ice::ProtocolException'
|
684
|
+
end
|
685
|
+
|
686
|
+
attr_accessor :reason
|
687
|
+
end
|
688
|
+
|
689
|
+
T_ProtocolException = ::Ice::__defineException('::Ice::ProtocolException', ProtocolException, false, nil, [["reason", ::Ice::T_string, false, 0]])
|
690
|
+
ProtocolException::ICE_TYPE = T_ProtocolException
|
691
|
+
end
|
692
|
+
|
693
|
+
if not defined?(::Ice::BadMagicException)
|
694
|
+
class BadMagicException < ::Ice::ProtocolException
|
695
|
+
def initialize(reason='', badMagic=nil)
|
696
|
+
super(reason)
|
697
|
+
@badMagic = badMagic
|
698
|
+
end
|
699
|
+
|
700
|
+
def to_s
|
701
|
+
'Ice::BadMagicException'
|
702
|
+
end
|
703
|
+
|
704
|
+
attr_accessor :badMagic
|
705
|
+
end
|
706
|
+
|
707
|
+
T_BadMagicException = ::Ice::__defineException('::Ice::BadMagicException', BadMagicException, false, ::Ice::T_ProtocolException, [["badMagic", ::Ice::T_ByteSeq, false, 0]])
|
708
|
+
BadMagicException::ICE_TYPE = T_BadMagicException
|
709
|
+
end
|
710
|
+
|
711
|
+
if not defined?(::Ice::UnsupportedProtocolException)
|
712
|
+
class UnsupportedProtocolException < ::Ice::ProtocolException
|
713
|
+
def initialize(reason='', bad=::Ice::ProtocolVersion.new, supported=::Ice::ProtocolVersion.new)
|
714
|
+
super(reason)
|
715
|
+
@bad = bad
|
716
|
+
@supported = supported
|
717
|
+
end
|
718
|
+
|
719
|
+
def to_s
|
720
|
+
'Ice::UnsupportedProtocolException'
|
721
|
+
end
|
722
|
+
|
723
|
+
attr_accessor :bad, :supported
|
724
|
+
end
|
725
|
+
|
726
|
+
T_UnsupportedProtocolException = ::Ice::__defineException('::Ice::UnsupportedProtocolException', UnsupportedProtocolException, false, ::Ice::T_ProtocolException, [
|
727
|
+
["bad", ::Ice::T_ProtocolVersion, false, 0],
|
728
|
+
["supported", ::Ice::T_ProtocolVersion, false, 0]
|
729
|
+
])
|
730
|
+
UnsupportedProtocolException::ICE_TYPE = T_UnsupportedProtocolException
|
731
|
+
end
|
732
|
+
|
733
|
+
if not defined?(::Ice::UnsupportedEncodingException)
|
734
|
+
class UnsupportedEncodingException < ::Ice::ProtocolException
|
735
|
+
def initialize(reason='', bad=::Ice::EncodingVersion.new, supported=::Ice::EncodingVersion.new)
|
736
|
+
super(reason)
|
737
|
+
@bad = bad
|
738
|
+
@supported = supported
|
739
|
+
end
|
740
|
+
|
741
|
+
def to_s
|
742
|
+
'Ice::UnsupportedEncodingException'
|
743
|
+
end
|
744
|
+
|
745
|
+
attr_accessor :bad, :supported
|
746
|
+
end
|
747
|
+
|
748
|
+
T_UnsupportedEncodingException = ::Ice::__defineException('::Ice::UnsupportedEncodingException', UnsupportedEncodingException, false, ::Ice::T_ProtocolException, [
|
749
|
+
["bad", ::Ice::T_EncodingVersion, false, 0],
|
750
|
+
["supported", ::Ice::T_EncodingVersion, false, 0]
|
751
|
+
])
|
752
|
+
UnsupportedEncodingException::ICE_TYPE = T_UnsupportedEncodingException
|
753
|
+
end
|
754
|
+
|
755
|
+
if not defined?(::Ice::UnknownMessageException)
|
756
|
+
class UnknownMessageException < ::Ice::ProtocolException
|
757
|
+
def initialize(reason='')
|
758
|
+
super(reason)
|
759
|
+
end
|
760
|
+
|
761
|
+
def to_s
|
762
|
+
'Ice::UnknownMessageException'
|
763
|
+
end
|
764
|
+
end
|
765
|
+
|
766
|
+
T_UnknownMessageException = ::Ice::__defineException('::Ice::UnknownMessageException', UnknownMessageException, false, ::Ice::T_ProtocolException, [])
|
767
|
+
UnknownMessageException::ICE_TYPE = T_UnknownMessageException
|
768
|
+
end
|
769
|
+
|
770
|
+
if not defined?(::Ice::ConnectionNotValidatedException)
|
771
|
+
class ConnectionNotValidatedException < ::Ice::ProtocolException
|
772
|
+
def initialize(reason='')
|
773
|
+
super(reason)
|
774
|
+
end
|
775
|
+
|
776
|
+
def to_s
|
777
|
+
'Ice::ConnectionNotValidatedException'
|
778
|
+
end
|
779
|
+
end
|
780
|
+
|
781
|
+
T_ConnectionNotValidatedException = ::Ice::__defineException('::Ice::ConnectionNotValidatedException', ConnectionNotValidatedException, false, ::Ice::T_ProtocolException, [])
|
782
|
+
ConnectionNotValidatedException::ICE_TYPE = T_ConnectionNotValidatedException
|
783
|
+
end
|
784
|
+
|
785
|
+
if not defined?(::Ice::UnknownRequestIdException)
|
786
|
+
class UnknownRequestIdException < ::Ice::ProtocolException
|
787
|
+
def initialize(reason='')
|
788
|
+
super(reason)
|
789
|
+
end
|
790
|
+
|
791
|
+
def to_s
|
792
|
+
'Ice::UnknownRequestIdException'
|
793
|
+
end
|
794
|
+
end
|
795
|
+
|
796
|
+
T_UnknownRequestIdException = ::Ice::__defineException('::Ice::UnknownRequestIdException', UnknownRequestIdException, false, ::Ice::T_ProtocolException, [])
|
797
|
+
UnknownRequestIdException::ICE_TYPE = T_UnknownRequestIdException
|
798
|
+
end
|
799
|
+
|
800
|
+
if not defined?(::Ice::UnknownReplyStatusException)
|
801
|
+
class UnknownReplyStatusException < ::Ice::ProtocolException
|
802
|
+
def initialize(reason='')
|
803
|
+
super(reason)
|
804
|
+
end
|
805
|
+
|
806
|
+
def to_s
|
807
|
+
'Ice::UnknownReplyStatusException'
|
808
|
+
end
|
809
|
+
end
|
810
|
+
|
811
|
+
T_UnknownReplyStatusException = ::Ice::__defineException('::Ice::UnknownReplyStatusException', UnknownReplyStatusException, false, ::Ice::T_ProtocolException, [])
|
812
|
+
UnknownReplyStatusException::ICE_TYPE = T_UnknownReplyStatusException
|
813
|
+
end
|
814
|
+
|
815
|
+
if not defined?(::Ice::CloseConnectionException)
|
816
|
+
class CloseConnectionException < ::Ice::ProtocolException
|
817
|
+
def initialize(reason='')
|
818
|
+
super(reason)
|
819
|
+
end
|
820
|
+
|
821
|
+
def to_s
|
822
|
+
'Ice::CloseConnectionException'
|
823
|
+
end
|
824
|
+
end
|
825
|
+
|
826
|
+
T_CloseConnectionException = ::Ice::__defineException('::Ice::CloseConnectionException', CloseConnectionException, false, ::Ice::T_ProtocolException, [])
|
827
|
+
CloseConnectionException::ICE_TYPE = T_CloseConnectionException
|
828
|
+
end
|
829
|
+
|
830
|
+
if not defined?(::Ice::ForcedCloseConnectionException)
|
831
|
+
class ForcedCloseConnectionException < ::Ice::ProtocolException
|
832
|
+
def initialize(reason='')
|
833
|
+
super(reason)
|
834
|
+
end
|
835
|
+
|
836
|
+
def to_s
|
837
|
+
'Ice::ForcedCloseConnectionException'
|
838
|
+
end
|
839
|
+
end
|
840
|
+
|
841
|
+
T_ForcedCloseConnectionException = ::Ice::__defineException('::Ice::ForcedCloseConnectionException', ForcedCloseConnectionException, false, ::Ice::T_ProtocolException, [])
|
842
|
+
ForcedCloseConnectionException::ICE_TYPE = T_ForcedCloseConnectionException
|
843
|
+
end
|
844
|
+
|
845
|
+
if not defined?(::Ice::IllegalMessageSizeException)
|
846
|
+
class IllegalMessageSizeException < ::Ice::ProtocolException
|
847
|
+
def initialize(reason='')
|
848
|
+
super(reason)
|
849
|
+
end
|
850
|
+
|
851
|
+
def to_s
|
852
|
+
'Ice::IllegalMessageSizeException'
|
853
|
+
end
|
854
|
+
end
|
855
|
+
|
856
|
+
T_IllegalMessageSizeException = ::Ice::__defineException('::Ice::IllegalMessageSizeException', IllegalMessageSizeException, false, ::Ice::T_ProtocolException, [])
|
857
|
+
IllegalMessageSizeException::ICE_TYPE = T_IllegalMessageSizeException
|
858
|
+
end
|
859
|
+
|
860
|
+
if not defined?(::Ice::CompressionException)
|
861
|
+
class CompressionException < ::Ice::ProtocolException
|
862
|
+
def initialize(reason='')
|
863
|
+
super(reason)
|
864
|
+
end
|
865
|
+
|
866
|
+
def to_s
|
867
|
+
'Ice::CompressionException'
|
868
|
+
end
|
869
|
+
end
|
870
|
+
|
871
|
+
T_CompressionException = ::Ice::__defineException('::Ice::CompressionException', CompressionException, false, ::Ice::T_ProtocolException, [])
|
872
|
+
CompressionException::ICE_TYPE = T_CompressionException
|
873
|
+
end
|
874
|
+
|
875
|
+
if not defined?(::Ice::DatagramLimitException)
|
876
|
+
class DatagramLimitException < ::Ice::ProtocolException
|
877
|
+
def initialize(reason='')
|
878
|
+
super(reason)
|
879
|
+
end
|
880
|
+
|
881
|
+
def to_s
|
882
|
+
'Ice::DatagramLimitException'
|
883
|
+
end
|
884
|
+
end
|
885
|
+
|
886
|
+
T_DatagramLimitException = ::Ice::__defineException('::Ice::DatagramLimitException', DatagramLimitException, false, ::Ice::T_ProtocolException, [])
|
887
|
+
DatagramLimitException::ICE_TYPE = T_DatagramLimitException
|
888
|
+
end
|
889
|
+
|
890
|
+
if not defined?(::Ice::MarshalException)
|
891
|
+
class MarshalException < ::Ice::ProtocolException
|
892
|
+
def initialize(reason='')
|
893
|
+
super(reason)
|
894
|
+
end
|
895
|
+
|
896
|
+
def to_s
|
897
|
+
'Ice::MarshalException'
|
898
|
+
end
|
899
|
+
end
|
900
|
+
|
901
|
+
T_MarshalException = ::Ice::__defineException('::Ice::MarshalException', MarshalException, false, ::Ice::T_ProtocolException, [])
|
902
|
+
MarshalException::ICE_TYPE = T_MarshalException
|
903
|
+
end
|
904
|
+
|
905
|
+
if not defined?(::Ice::ProxyUnmarshalException)
|
906
|
+
class ProxyUnmarshalException < ::Ice::MarshalException
|
907
|
+
def initialize(reason='')
|
908
|
+
super(reason)
|
909
|
+
end
|
910
|
+
|
911
|
+
def to_s
|
912
|
+
'Ice::ProxyUnmarshalException'
|
913
|
+
end
|
914
|
+
end
|
915
|
+
|
916
|
+
T_ProxyUnmarshalException = ::Ice::__defineException('::Ice::ProxyUnmarshalException', ProxyUnmarshalException, false, ::Ice::T_MarshalException, [])
|
917
|
+
ProxyUnmarshalException::ICE_TYPE = T_ProxyUnmarshalException
|
918
|
+
end
|
919
|
+
|
920
|
+
if not defined?(::Ice::UnmarshalOutOfBoundsException)
|
921
|
+
class UnmarshalOutOfBoundsException < ::Ice::MarshalException
|
922
|
+
def initialize(reason='')
|
923
|
+
super(reason)
|
924
|
+
end
|
925
|
+
|
926
|
+
def to_s
|
927
|
+
'Ice::UnmarshalOutOfBoundsException'
|
928
|
+
end
|
929
|
+
end
|
930
|
+
|
931
|
+
T_UnmarshalOutOfBoundsException = ::Ice::__defineException('::Ice::UnmarshalOutOfBoundsException', UnmarshalOutOfBoundsException, false, ::Ice::T_MarshalException, [])
|
932
|
+
UnmarshalOutOfBoundsException::ICE_TYPE = T_UnmarshalOutOfBoundsException
|
933
|
+
end
|
934
|
+
|
935
|
+
if not defined?(::Ice::NoObjectFactoryException)
|
936
|
+
class NoObjectFactoryException < ::Ice::MarshalException
|
937
|
+
def initialize(reason='', type='')
|
938
|
+
super(reason)
|
939
|
+
@type = type
|
940
|
+
end
|
941
|
+
|
942
|
+
def to_s
|
943
|
+
'Ice::NoObjectFactoryException'
|
944
|
+
end
|
945
|
+
|
946
|
+
attr_accessor :type
|
947
|
+
end
|
948
|
+
|
949
|
+
T_NoObjectFactoryException = ::Ice::__defineException('::Ice::NoObjectFactoryException', NoObjectFactoryException, false, ::Ice::T_MarshalException, [["type", ::Ice::T_string, false, 0]])
|
950
|
+
NoObjectFactoryException::ICE_TYPE = T_NoObjectFactoryException
|
951
|
+
end
|
952
|
+
|
953
|
+
if not defined?(::Ice::UnexpectedObjectException)
|
954
|
+
class UnexpectedObjectException < ::Ice::MarshalException
|
955
|
+
def initialize(reason='', type='', expectedType='')
|
956
|
+
super(reason)
|
957
|
+
@type = type
|
958
|
+
@expectedType = expectedType
|
959
|
+
end
|
960
|
+
|
961
|
+
def to_s
|
962
|
+
'Ice::UnexpectedObjectException'
|
963
|
+
end
|
964
|
+
|
965
|
+
attr_accessor :type, :expectedType
|
966
|
+
end
|
967
|
+
|
968
|
+
T_UnexpectedObjectException = ::Ice::__defineException('::Ice::UnexpectedObjectException', UnexpectedObjectException, false, ::Ice::T_MarshalException, [
|
969
|
+
["type", ::Ice::T_string, false, 0],
|
970
|
+
["expectedType", ::Ice::T_string, false, 0]
|
971
|
+
])
|
972
|
+
UnexpectedObjectException::ICE_TYPE = T_UnexpectedObjectException
|
973
|
+
end
|
974
|
+
|
975
|
+
if not defined?(::Ice::MemoryLimitException)
|
976
|
+
class MemoryLimitException < ::Ice::MarshalException
|
977
|
+
def initialize(reason='')
|
978
|
+
super(reason)
|
979
|
+
end
|
980
|
+
|
981
|
+
def to_s
|
982
|
+
'Ice::MemoryLimitException'
|
983
|
+
end
|
984
|
+
end
|
985
|
+
|
986
|
+
T_MemoryLimitException = ::Ice::__defineException('::Ice::MemoryLimitException', MemoryLimitException, false, ::Ice::T_MarshalException, [])
|
987
|
+
MemoryLimitException::ICE_TYPE = T_MemoryLimitException
|
988
|
+
end
|
989
|
+
|
990
|
+
if not defined?(::Ice::StringConversionException)
|
991
|
+
class StringConversionException < ::Ice::MarshalException
|
992
|
+
def initialize(reason='')
|
993
|
+
super(reason)
|
994
|
+
end
|
995
|
+
|
996
|
+
def to_s
|
997
|
+
'Ice::StringConversionException'
|
998
|
+
end
|
999
|
+
end
|
1000
|
+
|
1001
|
+
T_StringConversionException = ::Ice::__defineException('::Ice::StringConversionException', StringConversionException, false, ::Ice::T_MarshalException, [])
|
1002
|
+
StringConversionException::ICE_TYPE = T_StringConversionException
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
if not defined?(::Ice::EncapsulationException)
|
1006
|
+
class EncapsulationException < ::Ice::MarshalException
|
1007
|
+
def initialize(reason='')
|
1008
|
+
super(reason)
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
def to_s
|
1012
|
+
'Ice::EncapsulationException'
|
1013
|
+
end
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
T_EncapsulationException = ::Ice::__defineException('::Ice::EncapsulationException', EncapsulationException, false, ::Ice::T_MarshalException, [])
|
1017
|
+
EncapsulationException::ICE_TYPE = T_EncapsulationException
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
if not defined?(::Ice::FeatureNotSupportedException)
|
1021
|
+
class FeatureNotSupportedException < Ice::LocalException
|
1022
|
+
def initialize(unsupportedFeature='')
|
1023
|
+
@unsupportedFeature = unsupportedFeature
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
def to_s
|
1027
|
+
'Ice::FeatureNotSupportedException'
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
attr_accessor :unsupportedFeature
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
T_FeatureNotSupportedException = ::Ice::__defineException('::Ice::FeatureNotSupportedException', FeatureNotSupportedException, false, nil, [["unsupportedFeature", ::Ice::T_string, false, 0]])
|
1034
|
+
FeatureNotSupportedException::ICE_TYPE = T_FeatureNotSupportedException
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
if not defined?(::Ice::SecurityException)
|
1038
|
+
class SecurityException < Ice::LocalException
|
1039
|
+
def initialize(reason='')
|
1040
|
+
@reason = reason
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
def to_s
|
1044
|
+
'Ice::SecurityException'
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
attr_accessor :reason
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
T_SecurityException = ::Ice::__defineException('::Ice::SecurityException', SecurityException, false, nil, [["reason", ::Ice::T_string, false, 0]])
|
1051
|
+
SecurityException::ICE_TYPE = T_SecurityException
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
if not defined?(::Ice::FixedProxyException)
|
1055
|
+
class FixedProxyException < Ice::LocalException
|
1056
|
+
def initialize
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
def to_s
|
1060
|
+
'Ice::FixedProxyException'
|
1061
|
+
end
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
T_FixedProxyException = ::Ice::__defineException('::Ice::FixedProxyException', FixedProxyException, false, nil, [])
|
1065
|
+
FixedProxyException::ICE_TYPE = T_FixedProxyException
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
if not defined?(::Ice::ResponseSentException)
|
1069
|
+
class ResponseSentException < Ice::LocalException
|
1070
|
+
def initialize
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
def to_s
|
1074
|
+
'Ice::ResponseSentException'
|
1075
|
+
end
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
T_ResponseSentException = ::Ice::__defineException('::Ice::ResponseSentException', ResponseSentException, false, nil, [])
|
1079
|
+
ResponseSentException::ICE_TYPE = T_ResponseSentException
|
1080
|
+
end
|
1081
|
+
end
|