zeroc-ice 3.7.11__cp314-cp314-macosx_10_15_universal2.whl → 3.8.0.post1__cp314-cp314-macosx_10_15_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- Glacier2/CannotCreateSessionException.py +40 -0
- Glacier2/IdentitySet.py +293 -0
- Glacier2/IdentitySet_forward.py +10 -0
- Glacier2/PermissionDeniedException.py +40 -0
- Glacier2/PermissionsVerifier.py +189 -0
- Glacier2/PermissionsVerifier_forward.py +10 -0
- Glacier2/Router.py +661 -0
- Glacier2/Router_forward.py +10 -0
- Glacier2/SSLInfo.py +62 -0
- Glacier2/SSLPermissionsVerifier.py +186 -0
- Glacier2/SSLPermissionsVerifier_forward.py +10 -0
- Glacier2/SSLSessionManager.py +192 -0
- Glacier2/SSLSessionManager_forward.py +10 -0
- Glacier2/Session.py +161 -0
- Glacier2/SessionControl.py +407 -0
- Glacier2/SessionControl_forward.py +10 -0
- Glacier2/SessionManager.py +189 -0
- Glacier2/SessionManager_forward.py +10 -0
- Glacier2/SessionNotExistException.py +39 -0
- Glacier2/Session_forward.py +10 -0
- Glacier2/StringSet.py +289 -0
- Glacier2/StringSet_forward.py +10 -0
- Glacier2/__init__.py +78 -225
- Glacier2/py.typed +0 -0
- Ice/AdapterAlreadyActiveException.py +35 -0
- Ice/AdapterNotFoundException.py +35 -0
- Ice/BTEndpointType.py +18 -0
- Ice/BTSEndpointType.py +18 -0
- Ice/Blobject.py +42 -0
- Ice/BoolSeq.py +10 -0
- Ice/Builtin.py +11 -0
- Ice/ByteSeq.py +10 -0
- Ice/Communicator.py +633 -0
- Ice/CompressBatch.py +25 -0
- Ice/Context.py +10 -0
- Ice/Current.py +47 -0
- Ice/Dispatch.py +122 -0
- Ice/DoubleSeq.py +10 -0
- Ice/EncodingVersion.py +41 -0
- Ice/EndpointSelectionType.py +22 -0
- Ice/EventLoopAdapter.py +52 -0
- Ice/Exception.py +27 -0
- Ice/FloatSeq.py +10 -0
- Ice/FormatType.py +22 -0
- Ice/Future.py +375 -0
- Ice/IcePyTypes.py +49 -0
- Ice/Identity.py +40 -0
- Ice/IdentitySeq.py +12 -0
- Ice/ImplicitContext.py +119 -0
- Ice/InitializationData.py +65 -0
- Ice/IntSeq.py +10 -0
- Ice/InvalidReplicaGroupIdException.py +34 -0
- Ice/InvocationFuture.py +155 -0
- Ice/LocalException.py +12 -0
- Ice/LocalExceptions.py +534 -0
- Ice/Locator.py +332 -0
- Ice/LocatorFinder.py +163 -0
- Ice/LocatorFinder_forward.py +10 -0
- Ice/LocatorRegistry.py +387 -0
- Ice/LocatorRegistry_forward.py +10 -0
- Ice/Locator_forward.py +10 -0
- Ice/LogMessage.py +51 -0
- Ice/LogMessageSeq.py +12 -0
- Ice/LogMessageType.py +51 -0
- Ice/LogMessageTypeSeq.py +12 -0
- Ice/Logger.py +100 -0
- Ice/LoggerAdmin.py +380 -0
- Ice/LoggerAdmin_forward.py +10 -0
- Ice/LongSeq.py +10 -0
- Ice/Object.py +150 -0
- Ice/ObjectAdapter.py +621 -0
- Ice/ObjectNotFoundException.py +35 -0
- Ice/ObjectProxySeq.py +12 -0
- Ice/ObjectPrx.py +934 -0
- Ice/ObjectPrx_forward.py +7 -0
- Ice/ObjectSeq.py +12 -0
- Ice/OperationMode.py +52 -0
- Ice/Process.py +217 -0
- Ice/ProcessLogger.py +41 -0
- Ice/Process_forward.py +10 -0
- Ice/Properties.py +371 -0
- Ice/PropertiesAdmin.py +302 -0
- Ice/PropertiesAdmin_forward.py +10 -0
- Ice/PropertyDict.py +10 -0
- Ice/ProtocolVersion.py +39 -0
- Ice/Proxy.py +126 -0
- Ice/RemoteLogger.py +238 -0
- Ice/RemoteLoggerAlreadyAttachedException.py +34 -0
- Ice/RemoteLogger_forward.py +10 -0
- Ice/ReplyStatus.py +91 -0
- Ice/Router.py +322 -0
- Ice/RouterFinder.py +163 -0
- Ice/RouterFinder_forward.py +10 -0
- Ice/Router_forward.py +10 -0
- Ice/SSLEndpointType.py +18 -0
- Ice/ServantLocator.py +88 -0
- Ice/ServerNotFoundException.py +34 -0
- Ice/ShortSeq.py +10 -0
- Ice/SliceChecksumDict.py +10 -0
- Ice/SliceInfo.py +22 -0
- Ice/SlicedData.py +14 -0
- Ice/StringSeq.py +10 -0
- Ice/TCPEndpointType.py +18 -0
- Ice/ToStringMode.py +34 -0
- Ice/UDPEndpointType.py +18 -0
- Ice/URIEndpointType.py +18 -0
- Ice/UnknownSlicedValue.py +39 -0
- Ice/UserException.py +18 -0
- Ice/Util.py +171 -0
- Ice/Value.py +59 -0
- Ice/Value_forward.py +7 -0
- Ice/WSEndpointType.py +18 -0
- Ice/WSSEndpointType.py +18 -0
- Ice/_ArrayUtil.py +51 -0
- Ice/_LoggerI.py +32 -0
- Ice/__init__.py +358 -1997
- Ice/asyncio/EventLoopAdapter.py +31 -0
- Ice/asyncio/__init__.py +5 -0
- Ice/iAPEndpointType.py +18 -0
- Ice/iAPSEndpointType.py +18 -0
- Ice/py.typed +0 -0
- IceBox/AlreadyStartedException.py +34 -0
- IceBox/AlreadyStoppedException.py +34 -0
- IceBox/NoSuchServiceException.py +34 -0
- IceBox/ServiceManager.py +447 -0
- IceBox/ServiceManager_forward.py +10 -0
- IceBox/ServiceObserver.py +229 -0
- IceBox/ServiceObserver_forward.py +10 -0
- IceBox/__init__.py +30 -7
- IceBox/py.typed +0 -0
- IceGrid/AccessDeniedException.py +40 -0
- IceGrid/AdapterDescriptor.py +77 -0
- IceGrid/AdapterDescriptorSeq.py +12 -0
- IceGrid/AdapterDynamicInfo.py +46 -0
- IceGrid/AdapterDynamicInfoSeq.py +12 -0
- IceGrid/AdapterInfo.py +50 -0
- IceGrid/AdapterInfoSeq.py +12 -0
- IceGrid/AdapterNotExistException.py +40 -0
- IceGrid/AdapterObserver.py +338 -0
- IceGrid/AdapterObserver_forward.py +10 -0
- IceGrid/AdaptiveLoadBalancingPolicy.py +48 -0
- IceGrid/AdaptiveLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Admin.py +3662 -0
- IceGrid/AdminSession.py +1406 -0
- IceGrid/AdminSession_forward.py +10 -0
- IceGrid/Admin_forward.py +10 -0
- IceGrid/AllocationException.py +40 -0
- IceGrid/AllocationTimeoutException.py +35 -0
- IceGrid/ApplicationDescriptor.py +89 -0
- IceGrid/ApplicationDescriptorSeq.py +12 -0
- IceGrid/ApplicationInfo.py +63 -0
- IceGrid/ApplicationInfoSeq.py +12 -0
- IceGrid/ApplicationNotExistException.py +40 -0
- IceGrid/ApplicationObserver.py +374 -0
- IceGrid/ApplicationObserver_forward.py +10 -0
- IceGrid/ApplicationUpdateDescriptor.py +118 -0
- IceGrid/ApplicationUpdateInfo.py +51 -0
- IceGrid/BadSignalException.py +40 -0
- IceGrid/BoxedDistributionDescriptor.py +49 -0
- IceGrid/BoxedDistributionDescriptor_forward.py +10 -0
- IceGrid/BoxedString.py +45 -0
- IceGrid/BoxedString_forward.py +10 -0
- IceGrid/CommunicatorDescriptor.py +79 -0
- IceGrid/CommunicatorDescriptor_forward.py +10 -0
- IceGrid/DbEnvDescriptor.py +55 -0
- IceGrid/DbEnvDescriptorSeq.py +12 -0
- IceGrid/DeploymentException.py +40 -0
- IceGrid/DistributionDescriptor.py +42 -0
- IceGrid/FileIterator.py +246 -0
- IceGrid/FileIterator_forward.py +10 -0
- IceGrid/FileNotAvailableException.py +49 -0
- IceGrid/FileParser.py +182 -0
- IceGrid/FileParser_forward.py +10 -0
- IceGrid/IceBoxDescriptor.py +55 -0
- IceGrid/IceBoxDescriptor_forward.py +10 -0
- IceGrid/LoadBalancingPolicy.py +45 -0
- IceGrid/LoadBalancingPolicy_forward.py +10 -0
- IceGrid/LoadInfo.py +43 -0
- IceGrid/LoadSample.py +45 -0
- IceGrid/Locator.py +232 -0
- IceGrid/Locator_forward.py +10 -0
- IceGrid/NodeDescriptor.py +71 -0
- IceGrid/NodeDescriptorDict.py +12 -0
- IceGrid/NodeDynamicInfo.py +57 -0
- IceGrid/NodeDynamicInfoSeq.py +12 -0
- IceGrid/NodeInfo.py +64 -0
- IceGrid/NodeNotExistException.py +40 -0
- IceGrid/NodeObserver.py +424 -0
- IceGrid/NodeObserver_forward.py +10 -0
- IceGrid/NodeUnreachableException.py +46 -0
- IceGrid/NodeUpdateDescriptor.py +92 -0
- IceGrid/NodeUpdateDescriptorSeq.py +12 -0
- IceGrid/ObjectDescriptor.py +48 -0
- IceGrid/ObjectDescriptorSeq.py +12 -0
- IceGrid/ObjectExistsException.py +44 -0
- IceGrid/ObjectInfo.py +46 -0
- IceGrid/ObjectInfoSeq.py +12 -0
- IceGrid/ObjectNotRegisteredException.py +44 -0
- IceGrid/ObjectObserver.py +347 -0
- IceGrid/ObjectObserver_forward.py +10 -0
- IceGrid/ObserverAlreadyRegisteredException.py +49 -0
- IceGrid/OrderedLoadBalancingPolicy.py +41 -0
- IceGrid/OrderedLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ParseException.py +40 -0
- IceGrid/PermissionDeniedException.py +40 -0
- IceGrid/PropertyDescriptor.py +39 -0
- IceGrid/PropertyDescriptorSeq.py +12 -0
- IceGrid/PropertySetDescriptor.py +49 -0
- IceGrid/PropertySetDescriptorDict.py +12 -0
- IceGrid/Query.py +451 -0
- IceGrid/Query_forward.py +10 -0
- IceGrid/RandomLoadBalancingPolicy.py +41 -0
- IceGrid/RandomLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Registry.py +477 -0
- IceGrid/RegistryInfo.py +39 -0
- IceGrid/RegistryInfoSeq.py +12 -0
- IceGrid/RegistryNotExistException.py +40 -0
- IceGrid/RegistryObserver.py +282 -0
- IceGrid/RegistryObserver_forward.py +10 -0
- IceGrid/RegistryUnreachableException.py +46 -0
- IceGrid/Registry_forward.py +10 -0
- IceGrid/ReplicaGroupDescriptor.py +66 -0
- IceGrid/ReplicaGroupDescriptorSeq.py +12 -0
- IceGrid/RoundRobinLoadBalancingPolicy.py +41 -0
- IceGrid/RoundRobinLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ServerDescriptor.py +107 -0
- IceGrid/ServerDescriptorSeq.py +12 -0
- IceGrid/ServerDescriptor_forward.py +10 -0
- IceGrid/ServerDynamicInfo.py +50 -0
- IceGrid/ServerDynamicInfoSeq.py +12 -0
- IceGrid/ServerInfo.py +62 -0
- IceGrid/ServerInstanceDescriptor.py +58 -0
- IceGrid/ServerInstanceDescriptorSeq.py +12 -0
- IceGrid/ServerNotExistException.py +40 -0
- IceGrid/ServerStartException.py +46 -0
- IceGrid/ServerState.py +70 -0
- IceGrid/ServerStopException.py +46 -0
- IceGrid/ServiceDescriptor.py +53 -0
- IceGrid/ServiceDescriptorSeq.py +12 -0
- IceGrid/ServiceDescriptor_forward.py +10 -0
- IceGrid/ServiceInstanceDescriptor.py +60 -0
- IceGrid/ServiceInstanceDescriptorSeq.py +12 -0
- IceGrid/Session.py +498 -0
- IceGrid/Session_forward.py +10 -0
- IceGrid/StringObjectProxyDict.py +12 -0
- IceGrid/StringStringDict.py +10 -0
- IceGrid/TemplateDescriptor.py +55 -0
- IceGrid/TemplateDescriptorDict.py +12 -0
- IceGrid/UserAccountMapper.py +178 -0
- IceGrid/UserAccountMapper_forward.py +10 -0
- IceGrid/UserAccountNotFoundException.py +34 -0
- IceGrid/__init__.py +372 -14
- IceGrid/py.typed +0 -0
- IceMX/ChildInvocationMetrics.py +56 -0
- IceMX/ChildInvocationMetrics_forward.py +10 -0
- IceMX/CollocatedMetrics.py +42 -0
- IceMX/CollocatedMetrics_forward.py +10 -0
- IceMX/ConnectionMetrics.py +53 -0
- IceMX/ConnectionMetrics_forward.py +10 -0
- IceMX/DispatchMetrics.py +57 -0
- IceMX/DispatchMetrics_forward.py +10 -0
- IceMX/InvocationMetrics.py +66 -0
- IceMX/InvocationMetrics_forward.py +10 -0
- IceMX/Metrics.py +66 -0
- IceMX/MetricsAdmin.py +586 -0
- IceMX/MetricsAdmin_forward.py +10 -0
- IceMX/MetricsFailures.py +42 -0
- IceMX/MetricsFailuresSeq.py +12 -0
- IceMX/MetricsMap.py +12 -0
- IceMX/MetricsView.py +12 -0
- IceMX/Metrics_forward.py +10 -0
- IceMX/RemoteMetrics.py +42 -0
- IceMX/RemoteMetrics_forward.py +10 -0
- IceMX/SessionMetrics.py +73 -0
- IceMX/SessionMetrics_forward.py +10 -0
- IceMX/StringIntDict.py +10 -0
- IceMX/SubscriberMetrics.py +57 -0
- IceMX/SubscriberMetrics_forward.py +10 -0
- IceMX/ThreadMetrics.py +59 -0
- IceMX/ThreadMetrics_forward.py +10 -0
- IceMX/TopicMetrics.py +53 -0
- IceMX/TopicMetrics_forward.py +10 -0
- IceMX/UnknownMetricsView.py +34 -0
- IceMX/__init__.py +72 -9
- IceMX/py.typed +0 -0
- IcePy-stubs/__init__.pyi +739 -0
- IcePy.cpython-314-darwin.so +0 -0
- IceStorm/AlreadySubscribed.py +34 -0
- IceStorm/BadQoS.py +40 -0
- IceStorm/Finder.py +163 -0
- IceStorm/Finder_forward.py +10 -0
- IceStorm/LinkExists.py +40 -0
- IceStorm/LinkInfo.py +50 -0
- IceStorm/LinkInfoSeq.py +12 -0
- IceStorm/NoSuchLink.py +40 -0
- IceStorm/NoSuchTopic.py +40 -0
- IceStorm/QoS.py +10 -0
- IceStorm/Topic.py +825 -0
- IceStorm/TopicDict.py +12 -0
- IceStorm/TopicExists.py +40 -0
- IceStorm/TopicManager.py +394 -0
- IceStorm/TopicManager_forward.py +10 -0
- IceStorm/Topic_forward.py +10 -0
- IceStorm/__init__.py +58 -7
- IceStorm/py.typed +0 -0
- slice/DataStorm/SampleEvent.ice +29 -0
- slice/Glacier2/Metrics.ice +34 -75
- slice/Glacier2/PermissionsVerifier.ice +42 -98
- slice/Glacier2/Router.ice +80 -173
- slice/Glacier2/SSLInfo.ice +23 -40
- slice/Glacier2/Session.ice +120 -261
- slice/Ice/BuiltinSequences.ice +33 -38
- slice/Ice/Context.ice +24 -0
- slice/Ice/EndpointTypes.ice +35 -33
- slice/Ice/Identity.ice +24 -63
- slice/Ice/Locator.ice +61 -226
- slice/Ice/LocatorRegistry.ice +77 -0
- slice/Ice/Metrics.ice +189 -424
- slice/Ice/OperationMode.ice +38 -0
- slice/Ice/Process.ice +16 -52
- slice/Ice/PropertiesAdmin.ice +25 -75
- slice/Ice/PropertyDict.ice +23 -0
- slice/Ice/RemoteLogger.ice +113 -213
- slice/Ice/ReplyStatus.ice +65 -0
- slice/Ice/Router.ice +42 -91
- slice/Ice/SliceChecksumDict.ice +7 -25
- slice/Ice/Version.ice +31 -39
- slice/IceBox/ServiceManager.ice +79 -0
- slice/IceGrid/Admin.ice +942 -1918
- slice/IceGrid/Descriptor.ice +476 -1051
- slice/IceGrid/Exception.ice +86 -384
- slice/IceGrid/FileParser.ice +23 -59
- slice/IceGrid/Registry.ice +117 -256
- slice/IceGrid/Session.ice +46 -110
- slice/IceGrid/UserAccountMapper.ice +22 -57
- slice/IceStorm/IceStorm.ice +173 -401
- slice/IceStorm/Metrics.ice +28 -70
- slice2py.py +5 -6
- zeroc_ice-3.8.0.post1.dist-info/METADATA +106 -0
- zeroc_ice-3.8.0.post1.dist-info/RECORD +343 -0
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +1 -1
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.post1.dist-info}/top_level.txt +1 -1
- Glacier2/Metrics_ice.py +0 -82
- Glacier2/PermissionsVerifierF_ice.py +0 -32
- Glacier2/PermissionsVerifier_ice.py +0 -284
- Glacier2/RouterF_ice.py +0 -28
- Glacier2/Router_ice.py +0 -618
- Glacier2/SSLInfo_ice.py +0 -179
- Glacier2/Session_ice.py +0 -1103
- Ice/BuiltinSequences_ice.py +0 -65
- Ice/CommunicatorF_ice.py +0 -27
- Ice/Communicator_ice.py +0 -469
- Ice/ConnectionF_ice.py +0 -33
- Ice/Connection_ice.py +0 -680
- Ice/Current_ice.py +0 -175
- Ice/EndpointF_ice.py +0 -45
- Ice/EndpointTypes_ice.py +0 -54
- Ice/Endpoint_ice.py +0 -304
- Ice/FacetMap_ice.py +0 -27
- Ice/Identity_ice.py +0 -133
- Ice/ImplicitContextF_ice.py +0 -27
- Ice/ImplicitContext_ice.py +0 -119
- Ice/InstrumentationF_ice.py +0 -38
- Ice/Instrumentation_ice.py +0 -566
- Ice/LocalException_ice.py +0 -1715
- Ice/LocatorF_ice.py +0 -32
- Ice/Locator_ice.py +0 -728
- Ice/LoggerF_ice.py +0 -27
- Ice/Logger_ice.py +0 -96
- Ice/Metrics_ice.py +0 -864
- Ice/ObjectAdapterF_ice.py +0 -27
- Ice/ObjectAdapter_ice.py +0 -461
- Ice/ObjectFactory_ice.py +0 -68
- Ice/PluginF_ice.py +0 -30
- Ice/Plugin_ice.py +0 -136
- Ice/ProcessF_ice.py +0 -28
- Ice/Process_ice.py +0 -175
- Ice/PropertiesAdmin_ice.py +0 -247
- Ice/PropertiesF_ice.py +0 -31
- Ice/Properties_ice.py +0 -199
- Ice/Py3/IceFuture.py +0 -52
- Ice/Py3/__init__.py +0 -3
- Ice/RemoteLogger_ice.py +0 -617
- Ice/RouterF_ice.py +0 -28
- Ice/Router_ice.py +0 -350
- Ice/ServantLocatorF_ice.py +0 -27
- Ice/ServantLocator_ice.py +0 -110
- Ice/SliceChecksumDict_ice.py +0 -29
- Ice/ValueFactory_ice.py +0 -125
- Ice/Version_ice.py +0 -217
- IceBox/IceBox_ice.py +0 -644
- IceGrid/Admin_ice.py +0 -6662
- IceGrid/Descriptor_ice.py +0 -1795
- IceGrid/Exception_ice.py +0 -592
- IceGrid/FileParser_ice.py +0 -171
- IceGrid/PluginFacade_ice.py +0 -288
- IceGrid/Registry_ice.py +0 -985
- IceGrid/Session_ice.py +0 -406
- IceGrid/UserAccountMapper_ice.py +0 -166
- IcePatch2/FileInfo_ice.py +0 -287
- IcePatch2/FileServer_ice.py +0 -555
- IcePatch2/__init__.py +0 -11
- IceStorm/IceStorm_ice.py +0 -1265
- IceStorm/Metrics_ice.py +0 -106
- slice/Glacier2/PermissionsVerifierF.ice +0 -30
- slice/Glacier2/RouterF.ice +0 -29
- slice/Ice/Communicator.ice +0 -676
- slice/Ice/CommunicatorF.ice +0 -31
- slice/Ice/Connection.ice +0 -516
- slice/Ice/ConnectionF.ice +0 -33
- slice/Ice/Current.ice +0 -170
- slice/Ice/Endpoint.ice +0 -291
- slice/Ice/EndpointF.ice +0 -43
- slice/Ice/FacetMap.ice +0 -36
- slice/Ice/ImplicitContext.ice +0 -119
- slice/Ice/ImplicitContextF.ice +0 -30
- slice/Ice/Instrumentation.ice +0 -509
- slice/Ice/InstrumentationF.ice +0 -38
- slice/Ice/LocalException.ice +0 -1040
- slice/Ice/LocatorF.ice +0 -32
- slice/Ice/Logger.ice +0 -99
- slice/Ice/LoggerF.ice +0 -31
- slice/Ice/ObjectAdapter.ice +0 -710
- slice/Ice/ObjectAdapterF.ice +0 -31
- slice/Ice/ObjectFactory.ice +0 -71
- slice/Ice/Plugin.ice +0 -131
- slice/Ice/PluginF.ice +0 -36
- slice/Ice/ProcessF.ice +0 -31
- slice/Ice/Properties.ice +0 -244
- slice/Ice/PropertiesF.ice +0 -32
- slice/Ice/RouterF.ice +0 -31
- slice/Ice/ServantLocator.ice +0 -136
- slice/Ice/ServantLocatorF.ice +0 -31
- slice/Ice/ValueFactory.ice +0 -133
- slice/IceBT/ConnectionInfo.ice +0 -59
- slice/IceBT/EndpointInfo.ice +0 -57
- slice/IceBT/Types.ice +0 -45
- slice/IceBox/IceBox.ice +0 -216
- slice/IceGrid/PluginFacade.ice +0 -329
- slice/IceIAP/ConnectionInfo.ice +0 -74
- slice/IceIAP/EndpointInfo.ice +0 -68
- slice/IcePatch2/FileInfo.ice +0 -85
- slice/IcePatch2/FileServer.ice +0 -191
- slice/IceSSL/ConnectionInfo.ice +0 -54
- slice/IceSSL/ConnectionInfoF.ice +0 -31
- slice/IceSSL/EndpointInfo.ice +0 -45
- zeroc_ice-3.7.11.dist-info/METADATA +0 -97
- zeroc_ice-3.7.11.dist-info/RECORD +0 -142
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
Ice/LocalException_ice.py
DELETED
|
@@ -1,1715 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# Ice version 3.7.11
|
|
7
|
-
#
|
|
8
|
-
# <auto-generated>
|
|
9
|
-
#
|
|
10
|
-
# Generated from file `LocalException.ice'
|
|
11
|
-
#
|
|
12
|
-
# Warning: do not edit this file.
|
|
13
|
-
#
|
|
14
|
-
# </auto-generated>
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
from sys import version_info as _version_info_
|
|
18
|
-
import Ice, IcePy
|
|
19
|
-
import Ice.Identity_ice
|
|
20
|
-
import Ice.Version_ice
|
|
21
|
-
import Ice.BuiltinSequences_ice
|
|
22
|
-
|
|
23
|
-
# Included module Ice
|
|
24
|
-
_M_Ice = Ice.openModule('Ice')
|
|
25
|
-
|
|
26
|
-
# Start of module Ice
|
|
27
|
-
__name__ = 'Ice'
|
|
28
|
-
|
|
29
|
-
if 'InitializationException' not in _M_Ice.__dict__:
|
|
30
|
-
_M_Ice.InitializationException = Ice.createTempClass()
|
|
31
|
-
class InitializationException(Ice.LocalException):
|
|
32
|
-
"""
|
|
33
|
-
This exception is raised when a failure occurs during initialization.
|
|
34
|
-
Members:
|
|
35
|
-
reason -- The reason for the failure.
|
|
36
|
-
"""
|
|
37
|
-
def __init__(self, reason=''):
|
|
38
|
-
self.reason = reason
|
|
39
|
-
|
|
40
|
-
def __str__(self):
|
|
41
|
-
return IcePy.stringifyException(self)
|
|
42
|
-
|
|
43
|
-
__repr__ = __str__
|
|
44
|
-
|
|
45
|
-
_ice_id = '::Ice::InitializationException'
|
|
46
|
-
|
|
47
|
-
_M_Ice._t_InitializationException = IcePy.defineException('::Ice::InitializationException', InitializationException, (), False, None, (('reason', (), IcePy._t_string, False, 0),))
|
|
48
|
-
InitializationException._ice_type = _M_Ice._t_InitializationException
|
|
49
|
-
|
|
50
|
-
_M_Ice.InitializationException = InitializationException
|
|
51
|
-
del InitializationException
|
|
52
|
-
|
|
53
|
-
if 'PluginInitializationException' not in _M_Ice.__dict__:
|
|
54
|
-
_M_Ice.PluginInitializationException = Ice.createTempClass()
|
|
55
|
-
class PluginInitializationException(Ice.LocalException):
|
|
56
|
-
"""
|
|
57
|
-
This exception indicates that a failure occurred while initializing
|
|
58
|
-
a plug-in.
|
|
59
|
-
Members:
|
|
60
|
-
reason -- The reason for the failure.
|
|
61
|
-
"""
|
|
62
|
-
def __init__(self, reason=''):
|
|
63
|
-
self.reason = reason
|
|
64
|
-
|
|
65
|
-
def __str__(self):
|
|
66
|
-
return IcePy.stringifyException(self)
|
|
67
|
-
|
|
68
|
-
__repr__ = __str__
|
|
69
|
-
|
|
70
|
-
_ice_id = '::Ice::PluginInitializationException'
|
|
71
|
-
|
|
72
|
-
_M_Ice._t_PluginInitializationException = IcePy.defineException('::Ice::PluginInitializationException', PluginInitializationException, (), False, None, (('reason', (), IcePy._t_string, False, 0),))
|
|
73
|
-
PluginInitializationException._ice_type = _M_Ice._t_PluginInitializationException
|
|
74
|
-
|
|
75
|
-
_M_Ice.PluginInitializationException = PluginInitializationException
|
|
76
|
-
del PluginInitializationException
|
|
77
|
-
|
|
78
|
-
if 'CollocationOptimizationException' not in _M_Ice.__dict__:
|
|
79
|
-
_M_Ice.CollocationOptimizationException = Ice.createTempClass()
|
|
80
|
-
class CollocationOptimizationException(Ice.LocalException):
|
|
81
|
-
"""
|
|
82
|
-
This exception is raised if a feature is requested that is not
|
|
83
|
-
supported with collocation optimization.
|
|
84
|
-
"""
|
|
85
|
-
def __init__(self):
|
|
86
|
-
pass
|
|
87
|
-
|
|
88
|
-
def __str__(self):
|
|
89
|
-
return IcePy.stringifyException(self)
|
|
90
|
-
|
|
91
|
-
__repr__ = __str__
|
|
92
|
-
|
|
93
|
-
_ice_id = '::Ice::CollocationOptimizationException'
|
|
94
|
-
|
|
95
|
-
_M_Ice._t_CollocationOptimizationException = IcePy.defineException('::Ice::CollocationOptimizationException', CollocationOptimizationException, (), False, None, ())
|
|
96
|
-
CollocationOptimizationException._ice_type = _M_Ice._t_CollocationOptimizationException
|
|
97
|
-
|
|
98
|
-
_M_Ice.CollocationOptimizationException = CollocationOptimizationException
|
|
99
|
-
del CollocationOptimizationException
|
|
100
|
-
|
|
101
|
-
if 'AlreadyRegisteredException' not in _M_Ice.__dict__:
|
|
102
|
-
_M_Ice.AlreadyRegisteredException = Ice.createTempClass()
|
|
103
|
-
class AlreadyRegisteredException(Ice.LocalException):
|
|
104
|
-
"""
|
|
105
|
-
An attempt was made to register something more than once with
|
|
106
|
-
the Ice run time.
|
|
107
|
-
This exception is raised if an attempt is made to register a
|
|
108
|
-
servant, servant locator, facet, value factory, plug-in, object
|
|
109
|
-
adapter, object, or user exception factory more than once for the
|
|
110
|
-
same ID.
|
|
111
|
-
Members:
|
|
112
|
-
kindOfObject -- The kind of object that could not be removed: "servant", "facet",
|
|
113
|
-
"object", "default servant", "servant locator", "value factory", "plugin",
|
|
114
|
-
"object adapter", "object adapter with router", "replica group".
|
|
115
|
-
id -- The ID (or name) of the object that is registered already.
|
|
116
|
-
"""
|
|
117
|
-
def __init__(self, kindOfObject='', id=''):
|
|
118
|
-
self.kindOfObject = kindOfObject
|
|
119
|
-
self.id = id
|
|
120
|
-
|
|
121
|
-
def __str__(self):
|
|
122
|
-
return IcePy.stringifyException(self)
|
|
123
|
-
|
|
124
|
-
__repr__ = __str__
|
|
125
|
-
|
|
126
|
-
_ice_id = '::Ice::AlreadyRegisteredException'
|
|
127
|
-
|
|
128
|
-
_M_Ice._t_AlreadyRegisteredException = IcePy.defineException('::Ice::AlreadyRegisteredException', AlreadyRegisteredException, (), False, None, (
|
|
129
|
-
('kindOfObject', (), IcePy._t_string, False, 0),
|
|
130
|
-
('id', (), IcePy._t_string, False, 0)
|
|
131
|
-
))
|
|
132
|
-
AlreadyRegisteredException._ice_type = _M_Ice._t_AlreadyRegisteredException
|
|
133
|
-
|
|
134
|
-
_M_Ice.AlreadyRegisteredException = AlreadyRegisteredException
|
|
135
|
-
del AlreadyRegisteredException
|
|
136
|
-
|
|
137
|
-
if 'NotRegisteredException' not in _M_Ice.__dict__:
|
|
138
|
-
_M_Ice.NotRegisteredException = Ice.createTempClass()
|
|
139
|
-
class NotRegisteredException(Ice.LocalException):
|
|
140
|
-
"""
|
|
141
|
-
An attempt was made to find or deregister something that is not
|
|
142
|
-
registered with the Ice run time or Ice locator.
|
|
143
|
-
This exception is raised if an attempt is made to remove a servant,
|
|
144
|
-
servant locator, facet, value factory, plug-in, object adapter,
|
|
145
|
-
object, or user exception factory that is not currently registered.
|
|
146
|
-
It's also raised if the Ice locator can't find an object or object
|
|
147
|
-
adapter when resolving an indirect proxy or when an object adapter
|
|
148
|
-
is activated.
|
|
149
|
-
Members:
|
|
150
|
-
kindOfObject -- The kind of object that could not be removed: "servant", "facet",
|
|
151
|
-
"object", "default servant", "servant locator", "value factory", "plugin",
|
|
152
|
-
"object adapter", "object adapter with router", "replica group".
|
|
153
|
-
id -- The ID (or name) of the object that could not be removed.
|
|
154
|
-
"""
|
|
155
|
-
def __init__(self, kindOfObject='', id=''):
|
|
156
|
-
self.kindOfObject = kindOfObject
|
|
157
|
-
self.id = id
|
|
158
|
-
|
|
159
|
-
def __str__(self):
|
|
160
|
-
return IcePy.stringifyException(self)
|
|
161
|
-
|
|
162
|
-
__repr__ = __str__
|
|
163
|
-
|
|
164
|
-
_ice_id = '::Ice::NotRegisteredException'
|
|
165
|
-
|
|
166
|
-
_M_Ice._t_NotRegisteredException = IcePy.defineException('::Ice::NotRegisteredException', NotRegisteredException, (), False, None, (
|
|
167
|
-
('kindOfObject', (), IcePy._t_string, False, 0),
|
|
168
|
-
('id', (), IcePy._t_string, False, 0)
|
|
169
|
-
))
|
|
170
|
-
NotRegisteredException._ice_type = _M_Ice._t_NotRegisteredException
|
|
171
|
-
|
|
172
|
-
_M_Ice.NotRegisteredException = NotRegisteredException
|
|
173
|
-
del NotRegisteredException
|
|
174
|
-
|
|
175
|
-
if 'TwowayOnlyException' not in _M_Ice.__dict__:
|
|
176
|
-
_M_Ice.TwowayOnlyException = Ice.createTempClass()
|
|
177
|
-
class TwowayOnlyException(Ice.LocalException):
|
|
178
|
-
"""
|
|
179
|
-
The operation can only be invoked with a twoway request.
|
|
180
|
-
This exception is raised if an attempt is made to invoke an
|
|
181
|
-
operation with ice_oneway, ice_batchOneway, ice_datagram,
|
|
182
|
-
or ice_batchDatagram and the operation has a return value,
|
|
183
|
-
out-parameters, or an exception specification.
|
|
184
|
-
Members:
|
|
185
|
-
operation -- The name of the operation that was invoked.
|
|
186
|
-
"""
|
|
187
|
-
def __init__(self, operation=''):
|
|
188
|
-
self.operation = operation
|
|
189
|
-
|
|
190
|
-
def __str__(self):
|
|
191
|
-
return IcePy.stringifyException(self)
|
|
192
|
-
|
|
193
|
-
__repr__ = __str__
|
|
194
|
-
|
|
195
|
-
_ice_id = '::Ice::TwowayOnlyException'
|
|
196
|
-
|
|
197
|
-
_M_Ice._t_TwowayOnlyException = IcePy.defineException('::Ice::TwowayOnlyException', TwowayOnlyException, (), False, None, (('operation', (), IcePy._t_string, False, 0),))
|
|
198
|
-
TwowayOnlyException._ice_type = _M_Ice._t_TwowayOnlyException
|
|
199
|
-
|
|
200
|
-
_M_Ice.TwowayOnlyException = TwowayOnlyException
|
|
201
|
-
del TwowayOnlyException
|
|
202
|
-
|
|
203
|
-
if 'CloneNotImplementedException' not in _M_Ice.__dict__:
|
|
204
|
-
_M_Ice.CloneNotImplementedException = Ice.createTempClass()
|
|
205
|
-
class CloneNotImplementedException(Ice.LocalException):
|
|
206
|
-
"""
|
|
207
|
-
An attempt was made to clone a class that does not support
|
|
208
|
-
cloning.
|
|
209
|
-
This exception is raised if ice_clone is called on
|
|
210
|
-
a class that is derived from an abstract Slice class (that is,
|
|
211
|
-
a class containing operations), and the derived class does not
|
|
212
|
-
provide an implementation of the ice_clone operation (C++ only).
|
|
213
|
-
"""
|
|
214
|
-
def __init__(self):
|
|
215
|
-
pass
|
|
216
|
-
|
|
217
|
-
def __str__(self):
|
|
218
|
-
return IcePy.stringifyException(self)
|
|
219
|
-
|
|
220
|
-
__repr__ = __str__
|
|
221
|
-
|
|
222
|
-
_ice_id = '::Ice::CloneNotImplementedException'
|
|
223
|
-
|
|
224
|
-
_M_Ice._t_CloneNotImplementedException = IcePy.defineException('::Ice::CloneNotImplementedException', CloneNotImplementedException, (), False, None, ())
|
|
225
|
-
CloneNotImplementedException._ice_type = _M_Ice._t_CloneNotImplementedException
|
|
226
|
-
|
|
227
|
-
_M_Ice.CloneNotImplementedException = CloneNotImplementedException
|
|
228
|
-
del CloneNotImplementedException
|
|
229
|
-
|
|
230
|
-
if 'UnknownException' not in _M_Ice.__dict__:
|
|
231
|
-
_M_Ice.UnknownException = Ice.createTempClass()
|
|
232
|
-
class UnknownException(Ice.LocalException):
|
|
233
|
-
"""
|
|
234
|
-
This exception is raised if an operation call on a server raises an
|
|
235
|
-
unknown exception. For example, for C++, this exception is raised
|
|
236
|
-
if the server throws a C++ exception that is not directly or
|
|
237
|
-
indirectly derived from Ice::LocalException or
|
|
238
|
-
Ice::UserException.
|
|
239
|
-
Members:
|
|
240
|
-
unknown -- This field is set to the textual representation of the unknown
|
|
241
|
-
exception if available.
|
|
242
|
-
"""
|
|
243
|
-
def __init__(self, unknown=''):
|
|
244
|
-
self.unknown = unknown
|
|
245
|
-
|
|
246
|
-
def __str__(self):
|
|
247
|
-
return IcePy.stringifyException(self)
|
|
248
|
-
|
|
249
|
-
__repr__ = __str__
|
|
250
|
-
|
|
251
|
-
_ice_id = '::Ice::UnknownException'
|
|
252
|
-
|
|
253
|
-
_M_Ice._t_UnknownException = IcePy.defineException('::Ice::UnknownException', UnknownException, (), False, None, (('unknown', (), IcePy._t_string, False, 0),))
|
|
254
|
-
UnknownException._ice_type = _M_Ice._t_UnknownException
|
|
255
|
-
|
|
256
|
-
_M_Ice.UnknownException = UnknownException
|
|
257
|
-
del UnknownException
|
|
258
|
-
|
|
259
|
-
if 'UnknownLocalException' not in _M_Ice.__dict__:
|
|
260
|
-
_M_Ice.UnknownLocalException = Ice.createTempClass()
|
|
261
|
-
class UnknownLocalException(_M_Ice.UnknownException):
|
|
262
|
-
"""
|
|
263
|
-
This exception is raised if an operation call on a server raises a
|
|
264
|
-
local exception. Because local exceptions are not transmitted by
|
|
265
|
-
the Ice protocol, the client receives all local exceptions raised
|
|
266
|
-
by the server as UnknownLocalException. The only exception to this
|
|
267
|
-
rule are all exceptions derived from RequestFailedException,
|
|
268
|
-
which are transmitted by the Ice protocol even though they are
|
|
269
|
-
declared local.
|
|
270
|
-
"""
|
|
271
|
-
def __init__(self, unknown=''):
|
|
272
|
-
_M_Ice.UnknownException.__init__(self, unknown)
|
|
273
|
-
|
|
274
|
-
def __str__(self):
|
|
275
|
-
return IcePy.stringifyException(self)
|
|
276
|
-
|
|
277
|
-
__repr__ = __str__
|
|
278
|
-
|
|
279
|
-
_ice_id = '::Ice::UnknownLocalException'
|
|
280
|
-
|
|
281
|
-
_M_Ice._t_UnknownLocalException = IcePy.defineException('::Ice::UnknownLocalException', UnknownLocalException, (), False, _M_Ice._t_UnknownException, ())
|
|
282
|
-
UnknownLocalException._ice_type = _M_Ice._t_UnknownLocalException
|
|
283
|
-
|
|
284
|
-
_M_Ice.UnknownLocalException = UnknownLocalException
|
|
285
|
-
del UnknownLocalException
|
|
286
|
-
|
|
287
|
-
if 'UnknownUserException' not in _M_Ice.__dict__:
|
|
288
|
-
_M_Ice.UnknownUserException = Ice.createTempClass()
|
|
289
|
-
class UnknownUserException(_M_Ice.UnknownException):
|
|
290
|
-
"""
|
|
291
|
-
An operation raised an incorrect user exception.
|
|
292
|
-
This exception is raised if an operation raises a
|
|
293
|
-
user exception that is not declared in the exception's
|
|
294
|
-
throws clause. Such undeclared exceptions are
|
|
295
|
-
not transmitted from the server to the client by the Ice
|
|
296
|
-
protocol, but instead the client just gets an
|
|
297
|
-
UnknownUserException. This is necessary in order to not violate
|
|
298
|
-
the contract established by an operation's signature: Only local
|
|
299
|
-
exceptions and user exceptions declared in the
|
|
300
|
-
throws clause can be raised.
|
|
301
|
-
"""
|
|
302
|
-
def __init__(self, unknown=''):
|
|
303
|
-
_M_Ice.UnknownException.__init__(self, unknown)
|
|
304
|
-
|
|
305
|
-
def __str__(self):
|
|
306
|
-
return IcePy.stringifyException(self)
|
|
307
|
-
|
|
308
|
-
__repr__ = __str__
|
|
309
|
-
|
|
310
|
-
_ice_id = '::Ice::UnknownUserException'
|
|
311
|
-
|
|
312
|
-
_M_Ice._t_UnknownUserException = IcePy.defineException('::Ice::UnknownUserException', UnknownUserException, (), False, _M_Ice._t_UnknownException, ())
|
|
313
|
-
UnknownUserException._ice_type = _M_Ice._t_UnknownUserException
|
|
314
|
-
|
|
315
|
-
_M_Ice.UnknownUserException = UnknownUserException
|
|
316
|
-
del UnknownUserException
|
|
317
|
-
|
|
318
|
-
if 'VersionMismatchException' not in _M_Ice.__dict__:
|
|
319
|
-
_M_Ice.VersionMismatchException = Ice.createTempClass()
|
|
320
|
-
class VersionMismatchException(Ice.LocalException):
|
|
321
|
-
"""
|
|
322
|
-
This exception is raised if the Ice library version does not match
|
|
323
|
-
the version in the Ice header files.
|
|
324
|
-
"""
|
|
325
|
-
def __init__(self):
|
|
326
|
-
pass
|
|
327
|
-
|
|
328
|
-
def __str__(self):
|
|
329
|
-
return IcePy.stringifyException(self)
|
|
330
|
-
|
|
331
|
-
__repr__ = __str__
|
|
332
|
-
|
|
333
|
-
_ice_id = '::Ice::VersionMismatchException'
|
|
334
|
-
|
|
335
|
-
_M_Ice._t_VersionMismatchException = IcePy.defineException('::Ice::VersionMismatchException', VersionMismatchException, (), False, None, ())
|
|
336
|
-
VersionMismatchException._ice_type = _M_Ice._t_VersionMismatchException
|
|
337
|
-
|
|
338
|
-
_M_Ice.VersionMismatchException = VersionMismatchException
|
|
339
|
-
del VersionMismatchException
|
|
340
|
-
|
|
341
|
-
if 'CommunicatorDestroyedException' not in _M_Ice.__dict__:
|
|
342
|
-
_M_Ice.CommunicatorDestroyedException = Ice.createTempClass()
|
|
343
|
-
class CommunicatorDestroyedException(Ice.LocalException):
|
|
344
|
-
"""
|
|
345
|
-
This exception is raised if the Communicator has been destroyed.
|
|
346
|
-
"""
|
|
347
|
-
def __init__(self):
|
|
348
|
-
pass
|
|
349
|
-
|
|
350
|
-
def __str__(self):
|
|
351
|
-
return IcePy.stringifyException(self)
|
|
352
|
-
|
|
353
|
-
__repr__ = __str__
|
|
354
|
-
|
|
355
|
-
_ice_id = '::Ice::CommunicatorDestroyedException'
|
|
356
|
-
|
|
357
|
-
_M_Ice._t_CommunicatorDestroyedException = IcePy.defineException('::Ice::CommunicatorDestroyedException', CommunicatorDestroyedException, (), False, None, ())
|
|
358
|
-
CommunicatorDestroyedException._ice_type = _M_Ice._t_CommunicatorDestroyedException
|
|
359
|
-
|
|
360
|
-
_M_Ice.CommunicatorDestroyedException = CommunicatorDestroyedException
|
|
361
|
-
del CommunicatorDestroyedException
|
|
362
|
-
|
|
363
|
-
if 'ObjectAdapterDeactivatedException' not in _M_Ice.__dict__:
|
|
364
|
-
_M_Ice.ObjectAdapterDeactivatedException = Ice.createTempClass()
|
|
365
|
-
class ObjectAdapterDeactivatedException(Ice.LocalException):
|
|
366
|
-
"""
|
|
367
|
-
This exception is raised if an attempt is made to use a deactivated
|
|
368
|
-
ObjectAdapter.
|
|
369
|
-
Members:
|
|
370
|
-
name -- Name of the adapter.
|
|
371
|
-
"""
|
|
372
|
-
def __init__(self, name=''):
|
|
373
|
-
self.name = name
|
|
374
|
-
|
|
375
|
-
def __str__(self):
|
|
376
|
-
return IcePy.stringifyException(self)
|
|
377
|
-
|
|
378
|
-
__repr__ = __str__
|
|
379
|
-
|
|
380
|
-
_ice_id = '::Ice::ObjectAdapterDeactivatedException'
|
|
381
|
-
|
|
382
|
-
_M_Ice._t_ObjectAdapterDeactivatedException = IcePy.defineException('::Ice::ObjectAdapterDeactivatedException', ObjectAdapterDeactivatedException, (), False, None, (('name', (), IcePy._t_string, False, 0),))
|
|
383
|
-
ObjectAdapterDeactivatedException._ice_type = _M_Ice._t_ObjectAdapterDeactivatedException
|
|
384
|
-
|
|
385
|
-
_M_Ice.ObjectAdapterDeactivatedException = ObjectAdapterDeactivatedException
|
|
386
|
-
del ObjectAdapterDeactivatedException
|
|
387
|
-
|
|
388
|
-
if 'ObjectAdapterIdInUseException' not in _M_Ice.__dict__:
|
|
389
|
-
_M_Ice.ObjectAdapterIdInUseException = Ice.createTempClass()
|
|
390
|
-
class ObjectAdapterIdInUseException(Ice.LocalException):
|
|
391
|
-
"""
|
|
392
|
-
This exception is raised if an ObjectAdapter cannot be activated.
|
|
393
|
-
This happens if the Locator detects another active ObjectAdapter with
|
|
394
|
-
the same adapter id.
|
|
395
|
-
Members:
|
|
396
|
-
id -- Adapter ID.
|
|
397
|
-
"""
|
|
398
|
-
def __init__(self, id=''):
|
|
399
|
-
self.id = id
|
|
400
|
-
|
|
401
|
-
def __str__(self):
|
|
402
|
-
return IcePy.stringifyException(self)
|
|
403
|
-
|
|
404
|
-
__repr__ = __str__
|
|
405
|
-
|
|
406
|
-
_ice_id = '::Ice::ObjectAdapterIdInUseException'
|
|
407
|
-
|
|
408
|
-
_M_Ice._t_ObjectAdapterIdInUseException = IcePy.defineException('::Ice::ObjectAdapterIdInUseException', ObjectAdapterIdInUseException, (), False, None, (('id', (), IcePy._t_string, False, 0),))
|
|
409
|
-
ObjectAdapterIdInUseException._ice_type = _M_Ice._t_ObjectAdapterIdInUseException
|
|
410
|
-
|
|
411
|
-
_M_Ice.ObjectAdapterIdInUseException = ObjectAdapterIdInUseException
|
|
412
|
-
del ObjectAdapterIdInUseException
|
|
413
|
-
|
|
414
|
-
if 'NoEndpointException' not in _M_Ice.__dict__:
|
|
415
|
-
_M_Ice.NoEndpointException = Ice.createTempClass()
|
|
416
|
-
class NoEndpointException(Ice.LocalException):
|
|
417
|
-
"""
|
|
418
|
-
This exception is raised if no suitable endpoint is available.
|
|
419
|
-
Members:
|
|
420
|
-
proxy -- The stringified proxy for which no suitable endpoint is
|
|
421
|
-
available.
|
|
422
|
-
"""
|
|
423
|
-
def __init__(self, proxy=''):
|
|
424
|
-
self.proxy = proxy
|
|
425
|
-
|
|
426
|
-
def __str__(self):
|
|
427
|
-
return IcePy.stringifyException(self)
|
|
428
|
-
|
|
429
|
-
__repr__ = __str__
|
|
430
|
-
|
|
431
|
-
_ice_id = '::Ice::NoEndpointException'
|
|
432
|
-
|
|
433
|
-
_M_Ice._t_NoEndpointException = IcePy.defineException('::Ice::NoEndpointException', NoEndpointException, (), False, None, (('proxy', (), IcePy._t_string, False, 0),))
|
|
434
|
-
NoEndpointException._ice_type = _M_Ice._t_NoEndpointException
|
|
435
|
-
|
|
436
|
-
_M_Ice.NoEndpointException = NoEndpointException
|
|
437
|
-
del NoEndpointException
|
|
438
|
-
|
|
439
|
-
if 'EndpointParseException' not in _M_Ice.__dict__:
|
|
440
|
-
_M_Ice.EndpointParseException = Ice.createTempClass()
|
|
441
|
-
class EndpointParseException(Ice.LocalException):
|
|
442
|
-
"""
|
|
443
|
-
This exception is raised if there was an error while parsing an
|
|
444
|
-
endpoint.
|
|
445
|
-
Members:
|
|
446
|
-
str -- Describes the failure and includes the string that could not be parsed.
|
|
447
|
-
"""
|
|
448
|
-
def __init__(self, str=''):
|
|
449
|
-
self.str = str
|
|
450
|
-
|
|
451
|
-
def __str__(self):
|
|
452
|
-
return IcePy.stringifyException(self)
|
|
453
|
-
|
|
454
|
-
__repr__ = __str__
|
|
455
|
-
|
|
456
|
-
_ice_id = '::Ice::EndpointParseException'
|
|
457
|
-
|
|
458
|
-
_M_Ice._t_EndpointParseException = IcePy.defineException('::Ice::EndpointParseException', EndpointParseException, (), False, None, (('str', (), IcePy._t_string, False, 0),))
|
|
459
|
-
EndpointParseException._ice_type = _M_Ice._t_EndpointParseException
|
|
460
|
-
|
|
461
|
-
_M_Ice.EndpointParseException = EndpointParseException
|
|
462
|
-
del EndpointParseException
|
|
463
|
-
|
|
464
|
-
if 'EndpointSelectionTypeParseException' not in _M_Ice.__dict__:
|
|
465
|
-
_M_Ice.EndpointSelectionTypeParseException = Ice.createTempClass()
|
|
466
|
-
class EndpointSelectionTypeParseException(Ice.LocalException):
|
|
467
|
-
"""
|
|
468
|
-
This exception is raised if there was an error while parsing an
|
|
469
|
-
endpoint selection type.
|
|
470
|
-
Members:
|
|
471
|
-
str -- Describes the failure and includes the string that could not be parsed.
|
|
472
|
-
"""
|
|
473
|
-
def __init__(self, str=''):
|
|
474
|
-
self.str = str
|
|
475
|
-
|
|
476
|
-
def __str__(self):
|
|
477
|
-
return IcePy.stringifyException(self)
|
|
478
|
-
|
|
479
|
-
__repr__ = __str__
|
|
480
|
-
|
|
481
|
-
_ice_id = '::Ice::EndpointSelectionTypeParseException'
|
|
482
|
-
|
|
483
|
-
_M_Ice._t_EndpointSelectionTypeParseException = IcePy.defineException('::Ice::EndpointSelectionTypeParseException', EndpointSelectionTypeParseException, (), False, None, (('str', (), IcePy._t_string, False, 0),))
|
|
484
|
-
EndpointSelectionTypeParseException._ice_type = _M_Ice._t_EndpointSelectionTypeParseException
|
|
485
|
-
|
|
486
|
-
_M_Ice.EndpointSelectionTypeParseException = EndpointSelectionTypeParseException
|
|
487
|
-
del EndpointSelectionTypeParseException
|
|
488
|
-
|
|
489
|
-
if 'VersionParseException' not in _M_Ice.__dict__:
|
|
490
|
-
_M_Ice.VersionParseException = Ice.createTempClass()
|
|
491
|
-
class VersionParseException(Ice.LocalException):
|
|
492
|
-
"""
|
|
493
|
-
This exception is raised if there was an error while parsing a
|
|
494
|
-
version.
|
|
495
|
-
Members:
|
|
496
|
-
str -- Describes the failure and includes the string that could not be parsed.
|
|
497
|
-
"""
|
|
498
|
-
def __init__(self, str=''):
|
|
499
|
-
self.str = str
|
|
500
|
-
|
|
501
|
-
def __str__(self):
|
|
502
|
-
return IcePy.stringifyException(self)
|
|
503
|
-
|
|
504
|
-
__repr__ = __str__
|
|
505
|
-
|
|
506
|
-
_ice_id = '::Ice::VersionParseException'
|
|
507
|
-
|
|
508
|
-
_M_Ice._t_VersionParseException = IcePy.defineException('::Ice::VersionParseException', VersionParseException, (), False, None, (('str', (), IcePy._t_string, False, 0),))
|
|
509
|
-
VersionParseException._ice_type = _M_Ice._t_VersionParseException
|
|
510
|
-
|
|
511
|
-
_M_Ice.VersionParseException = VersionParseException
|
|
512
|
-
del VersionParseException
|
|
513
|
-
|
|
514
|
-
if 'IdentityParseException' not in _M_Ice.__dict__:
|
|
515
|
-
_M_Ice.IdentityParseException = Ice.createTempClass()
|
|
516
|
-
class IdentityParseException(Ice.LocalException):
|
|
517
|
-
"""
|
|
518
|
-
This exception is raised if there was an error while parsing a
|
|
519
|
-
stringified identity.
|
|
520
|
-
Members:
|
|
521
|
-
str -- Describes the failure and includes the string that could not be parsed.
|
|
522
|
-
"""
|
|
523
|
-
def __init__(self, str=''):
|
|
524
|
-
self.str = str
|
|
525
|
-
|
|
526
|
-
def __str__(self):
|
|
527
|
-
return IcePy.stringifyException(self)
|
|
528
|
-
|
|
529
|
-
__repr__ = __str__
|
|
530
|
-
|
|
531
|
-
_ice_id = '::Ice::IdentityParseException'
|
|
532
|
-
|
|
533
|
-
_M_Ice._t_IdentityParseException = IcePy.defineException('::Ice::IdentityParseException', IdentityParseException, (), False, None, (('str', (), IcePy._t_string, False, 0),))
|
|
534
|
-
IdentityParseException._ice_type = _M_Ice._t_IdentityParseException
|
|
535
|
-
|
|
536
|
-
_M_Ice.IdentityParseException = IdentityParseException
|
|
537
|
-
del IdentityParseException
|
|
538
|
-
|
|
539
|
-
if 'ProxyParseException' not in _M_Ice.__dict__:
|
|
540
|
-
_M_Ice.ProxyParseException = Ice.createTempClass()
|
|
541
|
-
class ProxyParseException(Ice.LocalException):
|
|
542
|
-
"""
|
|
543
|
-
This exception is raised if there was an error while parsing a
|
|
544
|
-
stringified proxy.
|
|
545
|
-
Members:
|
|
546
|
-
str -- Describes the failure and includes the string that could not be parsed.
|
|
547
|
-
"""
|
|
548
|
-
def __init__(self, str=''):
|
|
549
|
-
self.str = str
|
|
550
|
-
|
|
551
|
-
def __str__(self):
|
|
552
|
-
return IcePy.stringifyException(self)
|
|
553
|
-
|
|
554
|
-
__repr__ = __str__
|
|
555
|
-
|
|
556
|
-
_ice_id = '::Ice::ProxyParseException'
|
|
557
|
-
|
|
558
|
-
_M_Ice._t_ProxyParseException = IcePy.defineException('::Ice::ProxyParseException', ProxyParseException, (), False, None, (('str', (), IcePy._t_string, False, 0),))
|
|
559
|
-
ProxyParseException._ice_type = _M_Ice._t_ProxyParseException
|
|
560
|
-
|
|
561
|
-
_M_Ice.ProxyParseException = ProxyParseException
|
|
562
|
-
del ProxyParseException
|
|
563
|
-
|
|
564
|
-
if 'IllegalIdentityException' not in _M_Ice.__dict__:
|
|
565
|
-
_M_Ice.IllegalIdentityException = Ice.createTempClass()
|
|
566
|
-
class IllegalIdentityException(Ice.LocalException):
|
|
567
|
-
"""
|
|
568
|
-
This exception is raised if an illegal identity is encountered.
|
|
569
|
-
Members:
|
|
570
|
-
id -- The illegal identity.
|
|
571
|
-
"""
|
|
572
|
-
def __init__(self, id=Ice._struct_marker):
|
|
573
|
-
if id is Ice._struct_marker:
|
|
574
|
-
self.id = _M_Ice.Identity()
|
|
575
|
-
else:
|
|
576
|
-
self.id = id
|
|
577
|
-
|
|
578
|
-
def __str__(self):
|
|
579
|
-
return IcePy.stringifyException(self)
|
|
580
|
-
|
|
581
|
-
__repr__ = __str__
|
|
582
|
-
|
|
583
|
-
_ice_id = '::Ice::IllegalIdentityException'
|
|
584
|
-
|
|
585
|
-
_M_Ice._t_IllegalIdentityException = IcePy.defineException('::Ice::IllegalIdentityException', IllegalIdentityException, (), False, None, (('id', (), _M_Ice._t_Identity, False, 0),))
|
|
586
|
-
IllegalIdentityException._ice_type = _M_Ice._t_IllegalIdentityException
|
|
587
|
-
|
|
588
|
-
_M_Ice.IllegalIdentityException = IllegalIdentityException
|
|
589
|
-
del IllegalIdentityException
|
|
590
|
-
|
|
591
|
-
if 'IllegalServantException' not in _M_Ice.__dict__:
|
|
592
|
-
_M_Ice.IllegalServantException = Ice.createTempClass()
|
|
593
|
-
class IllegalServantException(Ice.LocalException):
|
|
594
|
-
"""
|
|
595
|
-
This exception is raised to reject an illegal servant (typically
|
|
596
|
-
a null servant)
|
|
597
|
-
Members:
|
|
598
|
-
reason -- Describes why this servant is illegal.
|
|
599
|
-
"""
|
|
600
|
-
def __init__(self, reason=''):
|
|
601
|
-
self.reason = reason
|
|
602
|
-
|
|
603
|
-
def __str__(self):
|
|
604
|
-
return IcePy.stringifyException(self)
|
|
605
|
-
|
|
606
|
-
__repr__ = __str__
|
|
607
|
-
|
|
608
|
-
_ice_id = '::Ice::IllegalServantException'
|
|
609
|
-
|
|
610
|
-
_M_Ice._t_IllegalServantException = IcePy.defineException('::Ice::IllegalServantException', IllegalServantException, (), False, None, (('reason', (), IcePy._t_string, False, 0),))
|
|
611
|
-
IllegalServantException._ice_type = _M_Ice._t_IllegalServantException
|
|
612
|
-
|
|
613
|
-
_M_Ice.IllegalServantException = IllegalServantException
|
|
614
|
-
del IllegalServantException
|
|
615
|
-
|
|
616
|
-
if 'RequestFailedException' not in _M_Ice.__dict__:
|
|
617
|
-
_M_Ice.RequestFailedException = Ice.createTempClass()
|
|
618
|
-
class RequestFailedException(Ice.LocalException):
|
|
619
|
-
"""
|
|
620
|
-
This exception is raised if a request failed. This exception, and
|
|
621
|
-
all exceptions derived from RequestFailedException, are
|
|
622
|
-
transmitted by the Ice protocol, even though they are declared
|
|
623
|
-
local.
|
|
624
|
-
Members:
|
|
625
|
-
id -- The identity of the Ice Object to which the request was sent.
|
|
626
|
-
facet -- The facet to which the request was sent.
|
|
627
|
-
operation -- The operation name of the request.
|
|
628
|
-
"""
|
|
629
|
-
def __init__(self, id=Ice._struct_marker, facet='', operation=''):
|
|
630
|
-
if id is Ice._struct_marker:
|
|
631
|
-
self.id = _M_Ice.Identity()
|
|
632
|
-
else:
|
|
633
|
-
self.id = id
|
|
634
|
-
self.facet = facet
|
|
635
|
-
self.operation = operation
|
|
636
|
-
|
|
637
|
-
def __str__(self):
|
|
638
|
-
return IcePy.stringifyException(self)
|
|
639
|
-
|
|
640
|
-
__repr__ = __str__
|
|
641
|
-
|
|
642
|
-
_ice_id = '::Ice::RequestFailedException'
|
|
643
|
-
|
|
644
|
-
_M_Ice._t_RequestFailedException = IcePy.defineException('::Ice::RequestFailedException', RequestFailedException, (), False, None, (
|
|
645
|
-
('id', (), _M_Ice._t_Identity, False, 0),
|
|
646
|
-
('facet', (), IcePy._t_string, False, 0),
|
|
647
|
-
('operation', (), IcePy._t_string, False, 0)
|
|
648
|
-
))
|
|
649
|
-
RequestFailedException._ice_type = _M_Ice._t_RequestFailedException
|
|
650
|
-
|
|
651
|
-
_M_Ice.RequestFailedException = RequestFailedException
|
|
652
|
-
del RequestFailedException
|
|
653
|
-
|
|
654
|
-
if 'ObjectNotExistException' not in _M_Ice.__dict__:
|
|
655
|
-
_M_Ice.ObjectNotExistException = Ice.createTempClass()
|
|
656
|
-
class ObjectNotExistException(_M_Ice.RequestFailedException):
|
|
657
|
-
"""
|
|
658
|
-
This exception is raised if an object does not exist on the server,
|
|
659
|
-
that is, if no facets with the given identity exist.
|
|
660
|
-
"""
|
|
661
|
-
def __init__(self, id=Ice._struct_marker, facet='', operation=''):
|
|
662
|
-
_M_Ice.RequestFailedException.__init__(self, id, facet, operation)
|
|
663
|
-
|
|
664
|
-
def __str__(self):
|
|
665
|
-
return IcePy.stringifyException(self)
|
|
666
|
-
|
|
667
|
-
__repr__ = __str__
|
|
668
|
-
|
|
669
|
-
_ice_id = '::Ice::ObjectNotExistException'
|
|
670
|
-
|
|
671
|
-
_M_Ice._t_ObjectNotExistException = IcePy.defineException('::Ice::ObjectNotExistException', ObjectNotExistException, (), False, _M_Ice._t_RequestFailedException, ())
|
|
672
|
-
ObjectNotExistException._ice_type = _M_Ice._t_ObjectNotExistException
|
|
673
|
-
|
|
674
|
-
_M_Ice.ObjectNotExistException = ObjectNotExistException
|
|
675
|
-
del ObjectNotExistException
|
|
676
|
-
|
|
677
|
-
if 'FacetNotExistException' not in _M_Ice.__dict__:
|
|
678
|
-
_M_Ice.FacetNotExistException = Ice.createTempClass()
|
|
679
|
-
class FacetNotExistException(_M_Ice.RequestFailedException):
|
|
680
|
-
"""
|
|
681
|
-
This exception is raised if no facet with the given name exists,
|
|
682
|
-
but at least one facet with the given identity exists.
|
|
683
|
-
"""
|
|
684
|
-
def __init__(self, id=Ice._struct_marker, facet='', operation=''):
|
|
685
|
-
_M_Ice.RequestFailedException.__init__(self, id, facet, operation)
|
|
686
|
-
|
|
687
|
-
def __str__(self):
|
|
688
|
-
return IcePy.stringifyException(self)
|
|
689
|
-
|
|
690
|
-
__repr__ = __str__
|
|
691
|
-
|
|
692
|
-
_ice_id = '::Ice::FacetNotExistException'
|
|
693
|
-
|
|
694
|
-
_M_Ice._t_FacetNotExistException = IcePy.defineException('::Ice::FacetNotExistException', FacetNotExistException, (), False, _M_Ice._t_RequestFailedException, ())
|
|
695
|
-
FacetNotExistException._ice_type = _M_Ice._t_FacetNotExistException
|
|
696
|
-
|
|
697
|
-
_M_Ice.FacetNotExistException = FacetNotExistException
|
|
698
|
-
del FacetNotExistException
|
|
699
|
-
|
|
700
|
-
if 'OperationNotExistException' not in _M_Ice.__dict__:
|
|
701
|
-
_M_Ice.OperationNotExistException = Ice.createTempClass()
|
|
702
|
-
class OperationNotExistException(_M_Ice.RequestFailedException):
|
|
703
|
-
"""
|
|
704
|
-
This exception is raised if an operation for a given object does
|
|
705
|
-
not exist on the server. Typically this is caused by either the
|
|
706
|
-
client or the server using an outdated Slice specification.
|
|
707
|
-
"""
|
|
708
|
-
def __init__(self, id=Ice._struct_marker, facet='', operation=''):
|
|
709
|
-
_M_Ice.RequestFailedException.__init__(self, id, facet, operation)
|
|
710
|
-
|
|
711
|
-
def __str__(self):
|
|
712
|
-
return IcePy.stringifyException(self)
|
|
713
|
-
|
|
714
|
-
__repr__ = __str__
|
|
715
|
-
|
|
716
|
-
_ice_id = '::Ice::OperationNotExistException'
|
|
717
|
-
|
|
718
|
-
_M_Ice._t_OperationNotExistException = IcePy.defineException('::Ice::OperationNotExistException', OperationNotExistException, (), False, _M_Ice._t_RequestFailedException, ())
|
|
719
|
-
OperationNotExistException._ice_type = _M_Ice._t_OperationNotExistException
|
|
720
|
-
|
|
721
|
-
_M_Ice.OperationNotExistException = OperationNotExistException
|
|
722
|
-
del OperationNotExistException
|
|
723
|
-
|
|
724
|
-
if 'SyscallException' not in _M_Ice.__dict__:
|
|
725
|
-
_M_Ice.SyscallException = Ice.createTempClass()
|
|
726
|
-
class SyscallException(Ice.LocalException):
|
|
727
|
-
"""
|
|
728
|
-
This exception is raised if a system error occurred in the server
|
|
729
|
-
or client process. There are many possible causes for such a system
|
|
730
|
-
exception. For details on the cause, SyscallException#error
|
|
731
|
-
should be inspected.
|
|
732
|
-
Members:
|
|
733
|
-
error -- The error number describing the system exception. For C++ and
|
|
734
|
-
Unix, this is equivalent to errno. For C++
|
|
735
|
-
and Windows, this is the value returned by
|
|
736
|
-
GetLastError() or
|
|
737
|
-
WSAGetLastError().
|
|
738
|
-
"""
|
|
739
|
-
def __init__(self, error=0):
|
|
740
|
-
self.error = error
|
|
741
|
-
|
|
742
|
-
def __str__(self):
|
|
743
|
-
return IcePy.stringifyException(self)
|
|
744
|
-
|
|
745
|
-
__repr__ = __str__
|
|
746
|
-
|
|
747
|
-
_ice_id = '::Ice::SyscallException'
|
|
748
|
-
|
|
749
|
-
_M_Ice._t_SyscallException = IcePy.defineException('::Ice::SyscallException', SyscallException, (), False, None, (('error', (), IcePy._t_int, False, 0),))
|
|
750
|
-
SyscallException._ice_type = _M_Ice._t_SyscallException
|
|
751
|
-
|
|
752
|
-
_M_Ice.SyscallException = SyscallException
|
|
753
|
-
del SyscallException
|
|
754
|
-
|
|
755
|
-
if 'SocketException' not in _M_Ice.__dict__:
|
|
756
|
-
_M_Ice.SocketException = Ice.createTempClass()
|
|
757
|
-
class SocketException(_M_Ice.SyscallException):
|
|
758
|
-
"""
|
|
759
|
-
This exception indicates socket errors.
|
|
760
|
-
"""
|
|
761
|
-
def __init__(self, error=0):
|
|
762
|
-
_M_Ice.SyscallException.__init__(self, error)
|
|
763
|
-
|
|
764
|
-
def __str__(self):
|
|
765
|
-
return IcePy.stringifyException(self)
|
|
766
|
-
|
|
767
|
-
__repr__ = __str__
|
|
768
|
-
|
|
769
|
-
_ice_id = '::Ice::SocketException'
|
|
770
|
-
|
|
771
|
-
_M_Ice._t_SocketException = IcePy.defineException('::Ice::SocketException', SocketException, (), False, _M_Ice._t_SyscallException, ())
|
|
772
|
-
SocketException._ice_type = _M_Ice._t_SocketException
|
|
773
|
-
|
|
774
|
-
_M_Ice.SocketException = SocketException
|
|
775
|
-
del SocketException
|
|
776
|
-
|
|
777
|
-
if 'CFNetworkException' not in _M_Ice.__dict__:
|
|
778
|
-
_M_Ice.CFNetworkException = Ice.createTempClass()
|
|
779
|
-
class CFNetworkException(_M_Ice.SocketException):
|
|
780
|
-
"""
|
|
781
|
-
This exception indicates CFNetwork errors.
|
|
782
|
-
Members:
|
|
783
|
-
domain -- The domain of the error.
|
|
784
|
-
"""
|
|
785
|
-
def __init__(self, error=0, domain=''):
|
|
786
|
-
_M_Ice.SocketException.__init__(self, error)
|
|
787
|
-
self.domain = domain
|
|
788
|
-
|
|
789
|
-
def __str__(self):
|
|
790
|
-
return IcePy.stringifyException(self)
|
|
791
|
-
|
|
792
|
-
__repr__ = __str__
|
|
793
|
-
|
|
794
|
-
_ice_id = '::Ice::CFNetworkException'
|
|
795
|
-
|
|
796
|
-
_M_Ice._t_CFNetworkException = IcePy.defineException('::Ice::CFNetworkException', CFNetworkException, (), False, _M_Ice._t_SocketException, (('domain', (), IcePy._t_string, False, 0),))
|
|
797
|
-
CFNetworkException._ice_type = _M_Ice._t_CFNetworkException
|
|
798
|
-
|
|
799
|
-
_M_Ice.CFNetworkException = CFNetworkException
|
|
800
|
-
del CFNetworkException
|
|
801
|
-
|
|
802
|
-
if 'FileException' not in _M_Ice.__dict__:
|
|
803
|
-
_M_Ice.FileException = Ice.createTempClass()
|
|
804
|
-
class FileException(_M_Ice.SyscallException):
|
|
805
|
-
"""
|
|
806
|
-
This exception indicates file errors.
|
|
807
|
-
Members:
|
|
808
|
-
path -- The path of the file responsible for the error.
|
|
809
|
-
"""
|
|
810
|
-
def __init__(self, error=0, path=''):
|
|
811
|
-
_M_Ice.SyscallException.__init__(self, error)
|
|
812
|
-
self.path = path
|
|
813
|
-
|
|
814
|
-
def __str__(self):
|
|
815
|
-
return IcePy.stringifyException(self)
|
|
816
|
-
|
|
817
|
-
__repr__ = __str__
|
|
818
|
-
|
|
819
|
-
_ice_id = '::Ice::FileException'
|
|
820
|
-
|
|
821
|
-
_M_Ice._t_FileException = IcePy.defineException('::Ice::FileException', FileException, (), False, _M_Ice._t_SyscallException, (('path', (), IcePy._t_string, False, 0),))
|
|
822
|
-
FileException._ice_type = _M_Ice._t_FileException
|
|
823
|
-
|
|
824
|
-
_M_Ice.FileException = FileException
|
|
825
|
-
del FileException
|
|
826
|
-
|
|
827
|
-
if 'ConnectFailedException' not in _M_Ice.__dict__:
|
|
828
|
-
_M_Ice.ConnectFailedException = Ice.createTempClass()
|
|
829
|
-
class ConnectFailedException(_M_Ice.SocketException):
|
|
830
|
-
"""
|
|
831
|
-
This exception indicates connection failures.
|
|
832
|
-
"""
|
|
833
|
-
def __init__(self, error=0):
|
|
834
|
-
_M_Ice.SocketException.__init__(self, error)
|
|
835
|
-
|
|
836
|
-
def __str__(self):
|
|
837
|
-
return IcePy.stringifyException(self)
|
|
838
|
-
|
|
839
|
-
__repr__ = __str__
|
|
840
|
-
|
|
841
|
-
_ice_id = '::Ice::ConnectFailedException'
|
|
842
|
-
|
|
843
|
-
_M_Ice._t_ConnectFailedException = IcePy.defineException('::Ice::ConnectFailedException', ConnectFailedException, (), False, _M_Ice._t_SocketException, ())
|
|
844
|
-
ConnectFailedException._ice_type = _M_Ice._t_ConnectFailedException
|
|
845
|
-
|
|
846
|
-
_M_Ice.ConnectFailedException = ConnectFailedException
|
|
847
|
-
del ConnectFailedException
|
|
848
|
-
|
|
849
|
-
if 'ConnectionRefusedException' not in _M_Ice.__dict__:
|
|
850
|
-
_M_Ice.ConnectionRefusedException = Ice.createTempClass()
|
|
851
|
-
class ConnectionRefusedException(_M_Ice.ConnectFailedException):
|
|
852
|
-
"""
|
|
853
|
-
This exception indicates a connection failure for which
|
|
854
|
-
the server host actively refuses a connection.
|
|
855
|
-
"""
|
|
856
|
-
def __init__(self, error=0):
|
|
857
|
-
_M_Ice.ConnectFailedException.__init__(self, error)
|
|
858
|
-
|
|
859
|
-
def __str__(self):
|
|
860
|
-
return IcePy.stringifyException(self)
|
|
861
|
-
|
|
862
|
-
__repr__ = __str__
|
|
863
|
-
|
|
864
|
-
_ice_id = '::Ice::ConnectionRefusedException'
|
|
865
|
-
|
|
866
|
-
_M_Ice._t_ConnectionRefusedException = IcePy.defineException('::Ice::ConnectionRefusedException', ConnectionRefusedException, (), False, _M_Ice._t_ConnectFailedException, ())
|
|
867
|
-
ConnectionRefusedException._ice_type = _M_Ice._t_ConnectionRefusedException
|
|
868
|
-
|
|
869
|
-
_M_Ice.ConnectionRefusedException = ConnectionRefusedException
|
|
870
|
-
del ConnectionRefusedException
|
|
871
|
-
|
|
872
|
-
if 'ConnectionLostException' not in _M_Ice.__dict__:
|
|
873
|
-
_M_Ice.ConnectionLostException = Ice.createTempClass()
|
|
874
|
-
class ConnectionLostException(_M_Ice.SocketException):
|
|
875
|
-
"""
|
|
876
|
-
This exception indicates a lost connection.
|
|
877
|
-
"""
|
|
878
|
-
def __init__(self, error=0):
|
|
879
|
-
_M_Ice.SocketException.__init__(self, error)
|
|
880
|
-
|
|
881
|
-
def __str__(self):
|
|
882
|
-
return IcePy.stringifyException(self)
|
|
883
|
-
|
|
884
|
-
__repr__ = __str__
|
|
885
|
-
|
|
886
|
-
_ice_id = '::Ice::ConnectionLostException'
|
|
887
|
-
|
|
888
|
-
_M_Ice._t_ConnectionLostException = IcePy.defineException('::Ice::ConnectionLostException', ConnectionLostException, (), False, _M_Ice._t_SocketException, ())
|
|
889
|
-
ConnectionLostException._ice_type = _M_Ice._t_ConnectionLostException
|
|
890
|
-
|
|
891
|
-
_M_Ice.ConnectionLostException = ConnectionLostException
|
|
892
|
-
del ConnectionLostException
|
|
893
|
-
|
|
894
|
-
if 'DNSException' not in _M_Ice.__dict__:
|
|
895
|
-
_M_Ice.DNSException = Ice.createTempClass()
|
|
896
|
-
class DNSException(Ice.LocalException):
|
|
897
|
-
"""
|
|
898
|
-
This exception indicates a DNS problem. For details on the cause,
|
|
899
|
-
DNSException#error should be inspected.
|
|
900
|
-
Members:
|
|
901
|
-
error -- The error number describing the DNS problem. For C++ and Unix,
|
|
902
|
-
this is equivalent to h_errno. For C++ and
|
|
903
|
-
Windows, this is the value returned by
|
|
904
|
-
WSAGetLastError().
|
|
905
|
-
host -- The host name that could not be resolved.
|
|
906
|
-
"""
|
|
907
|
-
def __init__(self, error=0, host=''):
|
|
908
|
-
self.error = error
|
|
909
|
-
self.host = host
|
|
910
|
-
|
|
911
|
-
def __str__(self):
|
|
912
|
-
return IcePy.stringifyException(self)
|
|
913
|
-
|
|
914
|
-
__repr__ = __str__
|
|
915
|
-
|
|
916
|
-
_ice_id = '::Ice::DNSException'
|
|
917
|
-
|
|
918
|
-
_M_Ice._t_DNSException = IcePy.defineException('::Ice::DNSException', DNSException, (), False, None, (
|
|
919
|
-
('error', (), IcePy._t_int, False, 0),
|
|
920
|
-
('host', (), IcePy._t_string, False, 0)
|
|
921
|
-
))
|
|
922
|
-
DNSException._ice_type = _M_Ice._t_DNSException
|
|
923
|
-
|
|
924
|
-
_M_Ice.DNSException = DNSException
|
|
925
|
-
del DNSException
|
|
926
|
-
|
|
927
|
-
if 'OperationInterruptedException' not in _M_Ice.__dict__:
|
|
928
|
-
_M_Ice.OperationInterruptedException = Ice.createTempClass()
|
|
929
|
-
class OperationInterruptedException(Ice.LocalException):
|
|
930
|
-
"""
|
|
931
|
-
This exception indicates a request was interrupted.
|
|
932
|
-
"""
|
|
933
|
-
def __init__(self):
|
|
934
|
-
pass
|
|
935
|
-
|
|
936
|
-
def __str__(self):
|
|
937
|
-
return IcePy.stringifyException(self)
|
|
938
|
-
|
|
939
|
-
__repr__ = __str__
|
|
940
|
-
|
|
941
|
-
_ice_id = '::Ice::OperationInterruptedException'
|
|
942
|
-
|
|
943
|
-
_M_Ice._t_OperationInterruptedException = IcePy.defineException('::Ice::OperationInterruptedException', OperationInterruptedException, (), False, None, ())
|
|
944
|
-
OperationInterruptedException._ice_type = _M_Ice._t_OperationInterruptedException
|
|
945
|
-
|
|
946
|
-
_M_Ice.OperationInterruptedException = OperationInterruptedException
|
|
947
|
-
del OperationInterruptedException
|
|
948
|
-
|
|
949
|
-
if 'TimeoutException' not in _M_Ice.__dict__:
|
|
950
|
-
_M_Ice.TimeoutException = Ice.createTempClass()
|
|
951
|
-
class TimeoutException(Ice.LocalException):
|
|
952
|
-
"""
|
|
953
|
-
This exception indicates a timeout condition.
|
|
954
|
-
"""
|
|
955
|
-
def __init__(self):
|
|
956
|
-
pass
|
|
957
|
-
|
|
958
|
-
def __str__(self):
|
|
959
|
-
return IcePy.stringifyException(self)
|
|
960
|
-
|
|
961
|
-
__repr__ = __str__
|
|
962
|
-
|
|
963
|
-
_ice_id = '::Ice::TimeoutException'
|
|
964
|
-
|
|
965
|
-
_M_Ice._t_TimeoutException = IcePy.defineException('::Ice::TimeoutException', TimeoutException, (), False, None, ())
|
|
966
|
-
TimeoutException._ice_type = _M_Ice._t_TimeoutException
|
|
967
|
-
|
|
968
|
-
_M_Ice.TimeoutException = TimeoutException
|
|
969
|
-
del TimeoutException
|
|
970
|
-
|
|
971
|
-
if 'ConnectTimeoutException' not in _M_Ice.__dict__:
|
|
972
|
-
_M_Ice.ConnectTimeoutException = Ice.createTempClass()
|
|
973
|
-
class ConnectTimeoutException(_M_Ice.TimeoutException):
|
|
974
|
-
"""
|
|
975
|
-
This exception indicates a connection establishment timeout condition.
|
|
976
|
-
"""
|
|
977
|
-
def __init__(self):
|
|
978
|
-
_M_Ice.TimeoutException.__init__(self)
|
|
979
|
-
|
|
980
|
-
def __str__(self):
|
|
981
|
-
return IcePy.stringifyException(self)
|
|
982
|
-
|
|
983
|
-
__repr__ = __str__
|
|
984
|
-
|
|
985
|
-
_ice_id = '::Ice::ConnectTimeoutException'
|
|
986
|
-
|
|
987
|
-
_M_Ice._t_ConnectTimeoutException = IcePy.defineException('::Ice::ConnectTimeoutException', ConnectTimeoutException, (), False, _M_Ice._t_TimeoutException, ())
|
|
988
|
-
ConnectTimeoutException._ice_type = _M_Ice._t_ConnectTimeoutException
|
|
989
|
-
|
|
990
|
-
_M_Ice.ConnectTimeoutException = ConnectTimeoutException
|
|
991
|
-
del ConnectTimeoutException
|
|
992
|
-
|
|
993
|
-
if 'CloseTimeoutException' not in _M_Ice.__dict__:
|
|
994
|
-
_M_Ice.CloseTimeoutException = Ice.createTempClass()
|
|
995
|
-
class CloseTimeoutException(_M_Ice.TimeoutException):
|
|
996
|
-
"""
|
|
997
|
-
This exception indicates a connection closure timeout condition.
|
|
998
|
-
"""
|
|
999
|
-
def __init__(self):
|
|
1000
|
-
_M_Ice.TimeoutException.__init__(self)
|
|
1001
|
-
|
|
1002
|
-
def __str__(self):
|
|
1003
|
-
return IcePy.stringifyException(self)
|
|
1004
|
-
|
|
1005
|
-
__repr__ = __str__
|
|
1006
|
-
|
|
1007
|
-
_ice_id = '::Ice::CloseTimeoutException'
|
|
1008
|
-
|
|
1009
|
-
_M_Ice._t_CloseTimeoutException = IcePy.defineException('::Ice::CloseTimeoutException', CloseTimeoutException, (), False, _M_Ice._t_TimeoutException, ())
|
|
1010
|
-
CloseTimeoutException._ice_type = _M_Ice._t_CloseTimeoutException
|
|
1011
|
-
|
|
1012
|
-
_M_Ice.CloseTimeoutException = CloseTimeoutException
|
|
1013
|
-
del CloseTimeoutException
|
|
1014
|
-
|
|
1015
|
-
if 'ConnectionTimeoutException' not in _M_Ice.__dict__:
|
|
1016
|
-
_M_Ice.ConnectionTimeoutException = Ice.createTempClass()
|
|
1017
|
-
class ConnectionTimeoutException(_M_Ice.TimeoutException):
|
|
1018
|
-
"""
|
|
1019
|
-
This exception indicates that a connection has been shut down because it has been
|
|
1020
|
-
idle for some time.
|
|
1021
|
-
"""
|
|
1022
|
-
def __init__(self):
|
|
1023
|
-
_M_Ice.TimeoutException.__init__(self)
|
|
1024
|
-
|
|
1025
|
-
def __str__(self):
|
|
1026
|
-
return IcePy.stringifyException(self)
|
|
1027
|
-
|
|
1028
|
-
__repr__ = __str__
|
|
1029
|
-
|
|
1030
|
-
_ice_id = '::Ice::ConnectionTimeoutException'
|
|
1031
|
-
|
|
1032
|
-
_M_Ice._t_ConnectionTimeoutException = IcePy.defineException('::Ice::ConnectionTimeoutException', ConnectionTimeoutException, (), False, _M_Ice._t_TimeoutException, ())
|
|
1033
|
-
ConnectionTimeoutException._ice_type = _M_Ice._t_ConnectionTimeoutException
|
|
1034
|
-
|
|
1035
|
-
_M_Ice.ConnectionTimeoutException = ConnectionTimeoutException
|
|
1036
|
-
del ConnectionTimeoutException
|
|
1037
|
-
|
|
1038
|
-
if 'InvocationTimeoutException' not in _M_Ice.__dict__:
|
|
1039
|
-
_M_Ice.InvocationTimeoutException = Ice.createTempClass()
|
|
1040
|
-
class InvocationTimeoutException(_M_Ice.TimeoutException):
|
|
1041
|
-
"""
|
|
1042
|
-
This exception indicates that an invocation failed because it timed
|
|
1043
|
-
out.
|
|
1044
|
-
"""
|
|
1045
|
-
def __init__(self):
|
|
1046
|
-
_M_Ice.TimeoutException.__init__(self)
|
|
1047
|
-
|
|
1048
|
-
def __str__(self):
|
|
1049
|
-
return IcePy.stringifyException(self)
|
|
1050
|
-
|
|
1051
|
-
__repr__ = __str__
|
|
1052
|
-
|
|
1053
|
-
_ice_id = '::Ice::InvocationTimeoutException'
|
|
1054
|
-
|
|
1055
|
-
_M_Ice._t_InvocationTimeoutException = IcePy.defineException('::Ice::InvocationTimeoutException', InvocationTimeoutException, (), False, _M_Ice._t_TimeoutException, ())
|
|
1056
|
-
InvocationTimeoutException._ice_type = _M_Ice._t_InvocationTimeoutException
|
|
1057
|
-
|
|
1058
|
-
_M_Ice.InvocationTimeoutException = InvocationTimeoutException
|
|
1059
|
-
del InvocationTimeoutException
|
|
1060
|
-
|
|
1061
|
-
if 'InvocationCanceledException' not in _M_Ice.__dict__:
|
|
1062
|
-
_M_Ice.InvocationCanceledException = Ice.createTempClass()
|
|
1063
|
-
class InvocationCanceledException(Ice.LocalException):
|
|
1064
|
-
"""
|
|
1065
|
-
This exception indicates that an asynchronous invocation failed
|
|
1066
|
-
because it was canceled explicitly by the user.
|
|
1067
|
-
"""
|
|
1068
|
-
def __init__(self):
|
|
1069
|
-
pass
|
|
1070
|
-
|
|
1071
|
-
def __str__(self):
|
|
1072
|
-
return IcePy.stringifyException(self)
|
|
1073
|
-
|
|
1074
|
-
__repr__ = __str__
|
|
1075
|
-
|
|
1076
|
-
_ice_id = '::Ice::InvocationCanceledException'
|
|
1077
|
-
|
|
1078
|
-
_M_Ice._t_InvocationCanceledException = IcePy.defineException('::Ice::InvocationCanceledException', InvocationCanceledException, (), False, None, ())
|
|
1079
|
-
InvocationCanceledException._ice_type = _M_Ice._t_InvocationCanceledException
|
|
1080
|
-
|
|
1081
|
-
_M_Ice.InvocationCanceledException = InvocationCanceledException
|
|
1082
|
-
del InvocationCanceledException
|
|
1083
|
-
|
|
1084
|
-
if 'ProtocolException' not in _M_Ice.__dict__:
|
|
1085
|
-
_M_Ice.ProtocolException = Ice.createTempClass()
|
|
1086
|
-
class ProtocolException(Ice.LocalException):
|
|
1087
|
-
"""
|
|
1088
|
-
A generic exception base for all kinds of protocol error
|
|
1089
|
-
conditions.
|
|
1090
|
-
Members:
|
|
1091
|
-
reason -- The reason for the failure.
|
|
1092
|
-
"""
|
|
1093
|
-
def __init__(self, reason=''):
|
|
1094
|
-
self.reason = reason
|
|
1095
|
-
|
|
1096
|
-
def __str__(self):
|
|
1097
|
-
return IcePy.stringifyException(self)
|
|
1098
|
-
|
|
1099
|
-
__repr__ = __str__
|
|
1100
|
-
|
|
1101
|
-
_ice_id = '::Ice::ProtocolException'
|
|
1102
|
-
|
|
1103
|
-
_M_Ice._t_ProtocolException = IcePy.defineException('::Ice::ProtocolException', ProtocolException, (), False, None, (('reason', (), IcePy._t_string, False, 0),))
|
|
1104
|
-
ProtocolException._ice_type = _M_Ice._t_ProtocolException
|
|
1105
|
-
|
|
1106
|
-
_M_Ice.ProtocolException = ProtocolException
|
|
1107
|
-
del ProtocolException
|
|
1108
|
-
|
|
1109
|
-
if 'BadMagicException' not in _M_Ice.__dict__:
|
|
1110
|
-
_M_Ice.BadMagicException = Ice.createTempClass()
|
|
1111
|
-
class BadMagicException(_M_Ice.ProtocolException):
|
|
1112
|
-
"""
|
|
1113
|
-
This exception indicates that a message did not start with the expected
|
|
1114
|
-
magic number ('I', 'c', 'e', 'P').
|
|
1115
|
-
Members:
|
|
1116
|
-
badMagic -- A sequence containing the first four bytes of the incorrect message.
|
|
1117
|
-
"""
|
|
1118
|
-
def __init__(self, reason='', badMagic=None):
|
|
1119
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1120
|
-
self.badMagic = badMagic
|
|
1121
|
-
|
|
1122
|
-
def __str__(self):
|
|
1123
|
-
return IcePy.stringifyException(self)
|
|
1124
|
-
|
|
1125
|
-
__repr__ = __str__
|
|
1126
|
-
|
|
1127
|
-
_ice_id = '::Ice::BadMagicException'
|
|
1128
|
-
|
|
1129
|
-
_M_Ice._t_BadMagicException = IcePy.defineException('::Ice::BadMagicException', BadMagicException, (), False, _M_Ice._t_ProtocolException, (('badMagic', (), _M_Ice._t_ByteSeq, False, 0),))
|
|
1130
|
-
BadMagicException._ice_type = _M_Ice._t_BadMagicException
|
|
1131
|
-
|
|
1132
|
-
_M_Ice.BadMagicException = BadMagicException
|
|
1133
|
-
del BadMagicException
|
|
1134
|
-
|
|
1135
|
-
if 'UnsupportedProtocolException' not in _M_Ice.__dict__:
|
|
1136
|
-
_M_Ice.UnsupportedProtocolException = Ice.createTempClass()
|
|
1137
|
-
class UnsupportedProtocolException(_M_Ice.ProtocolException):
|
|
1138
|
-
"""
|
|
1139
|
-
This exception indicates an unsupported protocol version.
|
|
1140
|
-
Members:
|
|
1141
|
-
bad -- The version of the unsupported protocol.
|
|
1142
|
-
supported -- The version of the protocol that is supported.
|
|
1143
|
-
"""
|
|
1144
|
-
def __init__(self, reason='', bad=Ice._struct_marker, supported=Ice._struct_marker):
|
|
1145
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1146
|
-
if bad is Ice._struct_marker:
|
|
1147
|
-
self.bad = _M_Ice.ProtocolVersion()
|
|
1148
|
-
else:
|
|
1149
|
-
self.bad = bad
|
|
1150
|
-
if supported is Ice._struct_marker:
|
|
1151
|
-
self.supported = _M_Ice.ProtocolVersion()
|
|
1152
|
-
else:
|
|
1153
|
-
self.supported = supported
|
|
1154
|
-
|
|
1155
|
-
def __str__(self):
|
|
1156
|
-
return IcePy.stringifyException(self)
|
|
1157
|
-
|
|
1158
|
-
__repr__ = __str__
|
|
1159
|
-
|
|
1160
|
-
_ice_id = '::Ice::UnsupportedProtocolException'
|
|
1161
|
-
|
|
1162
|
-
_M_Ice._t_UnsupportedProtocolException = IcePy.defineException('::Ice::UnsupportedProtocolException', UnsupportedProtocolException, (), False, _M_Ice._t_ProtocolException, (
|
|
1163
|
-
('bad', (), _M_Ice._t_ProtocolVersion, False, 0),
|
|
1164
|
-
('supported', (), _M_Ice._t_ProtocolVersion, False, 0)
|
|
1165
|
-
))
|
|
1166
|
-
UnsupportedProtocolException._ice_type = _M_Ice._t_UnsupportedProtocolException
|
|
1167
|
-
|
|
1168
|
-
_M_Ice.UnsupportedProtocolException = UnsupportedProtocolException
|
|
1169
|
-
del UnsupportedProtocolException
|
|
1170
|
-
|
|
1171
|
-
if 'UnsupportedEncodingException' not in _M_Ice.__dict__:
|
|
1172
|
-
_M_Ice.UnsupportedEncodingException = Ice.createTempClass()
|
|
1173
|
-
class UnsupportedEncodingException(_M_Ice.ProtocolException):
|
|
1174
|
-
"""
|
|
1175
|
-
This exception indicates an unsupported data encoding version.
|
|
1176
|
-
Members:
|
|
1177
|
-
bad -- The version of the unsupported encoding.
|
|
1178
|
-
supported -- The version of the encoding that is supported.
|
|
1179
|
-
"""
|
|
1180
|
-
def __init__(self, reason='', bad=Ice._struct_marker, supported=Ice._struct_marker):
|
|
1181
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1182
|
-
if bad is Ice._struct_marker:
|
|
1183
|
-
self.bad = _M_Ice.EncodingVersion()
|
|
1184
|
-
else:
|
|
1185
|
-
self.bad = bad
|
|
1186
|
-
if supported is Ice._struct_marker:
|
|
1187
|
-
self.supported = _M_Ice.EncodingVersion()
|
|
1188
|
-
else:
|
|
1189
|
-
self.supported = supported
|
|
1190
|
-
|
|
1191
|
-
def __str__(self):
|
|
1192
|
-
return IcePy.stringifyException(self)
|
|
1193
|
-
|
|
1194
|
-
__repr__ = __str__
|
|
1195
|
-
|
|
1196
|
-
_ice_id = '::Ice::UnsupportedEncodingException'
|
|
1197
|
-
|
|
1198
|
-
_M_Ice._t_UnsupportedEncodingException = IcePy.defineException('::Ice::UnsupportedEncodingException', UnsupportedEncodingException, (), False, _M_Ice._t_ProtocolException, (
|
|
1199
|
-
('bad', (), _M_Ice._t_EncodingVersion, False, 0),
|
|
1200
|
-
('supported', (), _M_Ice._t_EncodingVersion, False, 0)
|
|
1201
|
-
))
|
|
1202
|
-
UnsupportedEncodingException._ice_type = _M_Ice._t_UnsupportedEncodingException
|
|
1203
|
-
|
|
1204
|
-
_M_Ice.UnsupportedEncodingException = UnsupportedEncodingException
|
|
1205
|
-
del UnsupportedEncodingException
|
|
1206
|
-
|
|
1207
|
-
if 'UnknownMessageException' not in _M_Ice.__dict__:
|
|
1208
|
-
_M_Ice.UnknownMessageException = Ice.createTempClass()
|
|
1209
|
-
class UnknownMessageException(_M_Ice.ProtocolException):
|
|
1210
|
-
"""
|
|
1211
|
-
This exception indicates that an unknown protocol message has been received.
|
|
1212
|
-
"""
|
|
1213
|
-
def __init__(self, reason=''):
|
|
1214
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1215
|
-
|
|
1216
|
-
def __str__(self):
|
|
1217
|
-
return IcePy.stringifyException(self)
|
|
1218
|
-
|
|
1219
|
-
__repr__ = __str__
|
|
1220
|
-
|
|
1221
|
-
_ice_id = '::Ice::UnknownMessageException'
|
|
1222
|
-
|
|
1223
|
-
_M_Ice._t_UnknownMessageException = IcePy.defineException('::Ice::UnknownMessageException', UnknownMessageException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1224
|
-
UnknownMessageException._ice_type = _M_Ice._t_UnknownMessageException
|
|
1225
|
-
|
|
1226
|
-
_M_Ice.UnknownMessageException = UnknownMessageException
|
|
1227
|
-
del UnknownMessageException
|
|
1228
|
-
|
|
1229
|
-
if 'ConnectionNotValidatedException' not in _M_Ice.__dict__:
|
|
1230
|
-
_M_Ice.ConnectionNotValidatedException = Ice.createTempClass()
|
|
1231
|
-
class ConnectionNotValidatedException(_M_Ice.ProtocolException):
|
|
1232
|
-
"""
|
|
1233
|
-
This exception is raised if a message is received over a connection
|
|
1234
|
-
that is not yet validated.
|
|
1235
|
-
"""
|
|
1236
|
-
def __init__(self, reason=''):
|
|
1237
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1238
|
-
|
|
1239
|
-
def __str__(self):
|
|
1240
|
-
return IcePy.stringifyException(self)
|
|
1241
|
-
|
|
1242
|
-
__repr__ = __str__
|
|
1243
|
-
|
|
1244
|
-
_ice_id = '::Ice::ConnectionNotValidatedException'
|
|
1245
|
-
|
|
1246
|
-
_M_Ice._t_ConnectionNotValidatedException = IcePy.defineException('::Ice::ConnectionNotValidatedException', ConnectionNotValidatedException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1247
|
-
ConnectionNotValidatedException._ice_type = _M_Ice._t_ConnectionNotValidatedException
|
|
1248
|
-
|
|
1249
|
-
_M_Ice.ConnectionNotValidatedException = ConnectionNotValidatedException
|
|
1250
|
-
del ConnectionNotValidatedException
|
|
1251
|
-
|
|
1252
|
-
if 'UnknownRequestIdException' not in _M_Ice.__dict__:
|
|
1253
|
-
_M_Ice.UnknownRequestIdException = Ice.createTempClass()
|
|
1254
|
-
class UnknownRequestIdException(_M_Ice.ProtocolException):
|
|
1255
|
-
"""
|
|
1256
|
-
This exception indicates that a response for an unknown request ID has been
|
|
1257
|
-
received.
|
|
1258
|
-
"""
|
|
1259
|
-
def __init__(self, reason=''):
|
|
1260
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1261
|
-
|
|
1262
|
-
def __str__(self):
|
|
1263
|
-
return IcePy.stringifyException(self)
|
|
1264
|
-
|
|
1265
|
-
__repr__ = __str__
|
|
1266
|
-
|
|
1267
|
-
_ice_id = '::Ice::UnknownRequestIdException'
|
|
1268
|
-
|
|
1269
|
-
_M_Ice._t_UnknownRequestIdException = IcePy.defineException('::Ice::UnknownRequestIdException', UnknownRequestIdException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1270
|
-
UnknownRequestIdException._ice_type = _M_Ice._t_UnknownRequestIdException
|
|
1271
|
-
|
|
1272
|
-
_M_Ice.UnknownRequestIdException = UnknownRequestIdException
|
|
1273
|
-
del UnknownRequestIdException
|
|
1274
|
-
|
|
1275
|
-
if 'UnknownReplyStatusException' not in _M_Ice.__dict__:
|
|
1276
|
-
_M_Ice.UnknownReplyStatusException = Ice.createTempClass()
|
|
1277
|
-
class UnknownReplyStatusException(_M_Ice.ProtocolException):
|
|
1278
|
-
"""
|
|
1279
|
-
This exception indicates that an unknown reply status has been received.
|
|
1280
|
-
"""
|
|
1281
|
-
def __init__(self, reason=''):
|
|
1282
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1283
|
-
|
|
1284
|
-
def __str__(self):
|
|
1285
|
-
return IcePy.stringifyException(self)
|
|
1286
|
-
|
|
1287
|
-
__repr__ = __str__
|
|
1288
|
-
|
|
1289
|
-
_ice_id = '::Ice::UnknownReplyStatusException'
|
|
1290
|
-
|
|
1291
|
-
_M_Ice._t_UnknownReplyStatusException = IcePy.defineException('::Ice::UnknownReplyStatusException', UnknownReplyStatusException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1292
|
-
UnknownReplyStatusException._ice_type = _M_Ice._t_UnknownReplyStatusException
|
|
1293
|
-
|
|
1294
|
-
_M_Ice.UnknownReplyStatusException = UnknownReplyStatusException
|
|
1295
|
-
del UnknownReplyStatusException
|
|
1296
|
-
|
|
1297
|
-
if 'CloseConnectionException' not in _M_Ice.__dict__:
|
|
1298
|
-
_M_Ice.CloseConnectionException = Ice.createTempClass()
|
|
1299
|
-
class CloseConnectionException(_M_Ice.ProtocolException):
|
|
1300
|
-
"""
|
|
1301
|
-
This exception indicates that the connection has been gracefully shut down by the
|
|
1302
|
-
server. The operation call that caused this exception has not been
|
|
1303
|
-
executed by the server. In most cases you will not get this
|
|
1304
|
-
exception, because the client will automatically retry the
|
|
1305
|
-
operation call in case the server shut down the connection. However,
|
|
1306
|
-
if upon retry the server shuts down the connection again, and the
|
|
1307
|
-
retry limit has been reached, then this exception is propagated to
|
|
1308
|
-
the application code.
|
|
1309
|
-
"""
|
|
1310
|
-
def __init__(self, reason=''):
|
|
1311
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1312
|
-
|
|
1313
|
-
def __str__(self):
|
|
1314
|
-
return IcePy.stringifyException(self)
|
|
1315
|
-
|
|
1316
|
-
__repr__ = __str__
|
|
1317
|
-
|
|
1318
|
-
_ice_id = '::Ice::CloseConnectionException'
|
|
1319
|
-
|
|
1320
|
-
_M_Ice._t_CloseConnectionException = IcePy.defineException('::Ice::CloseConnectionException', CloseConnectionException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1321
|
-
CloseConnectionException._ice_type = _M_Ice._t_CloseConnectionException
|
|
1322
|
-
|
|
1323
|
-
_M_Ice.CloseConnectionException = CloseConnectionException
|
|
1324
|
-
del CloseConnectionException
|
|
1325
|
-
|
|
1326
|
-
if 'ConnectionManuallyClosedException' not in _M_Ice.__dict__:
|
|
1327
|
-
_M_Ice.ConnectionManuallyClosedException = Ice.createTempClass()
|
|
1328
|
-
class ConnectionManuallyClosedException(Ice.LocalException):
|
|
1329
|
-
"""
|
|
1330
|
-
This exception is raised by an operation call if the application
|
|
1331
|
-
closes the connection locally using Connection#close.
|
|
1332
|
-
Members:
|
|
1333
|
-
graceful -- True if the connection was closed gracefully, false otherwise.
|
|
1334
|
-
"""
|
|
1335
|
-
def __init__(self, graceful=False):
|
|
1336
|
-
self.graceful = graceful
|
|
1337
|
-
|
|
1338
|
-
def __str__(self):
|
|
1339
|
-
return IcePy.stringifyException(self)
|
|
1340
|
-
|
|
1341
|
-
__repr__ = __str__
|
|
1342
|
-
|
|
1343
|
-
_ice_id = '::Ice::ConnectionManuallyClosedException'
|
|
1344
|
-
|
|
1345
|
-
_M_Ice._t_ConnectionManuallyClosedException = IcePy.defineException('::Ice::ConnectionManuallyClosedException', ConnectionManuallyClosedException, (), False, None, (('graceful', (), IcePy._t_bool, False, 0),))
|
|
1346
|
-
ConnectionManuallyClosedException._ice_type = _M_Ice._t_ConnectionManuallyClosedException
|
|
1347
|
-
|
|
1348
|
-
_M_Ice.ConnectionManuallyClosedException = ConnectionManuallyClosedException
|
|
1349
|
-
del ConnectionManuallyClosedException
|
|
1350
|
-
|
|
1351
|
-
if 'IllegalMessageSizeException' not in _M_Ice.__dict__:
|
|
1352
|
-
_M_Ice.IllegalMessageSizeException = Ice.createTempClass()
|
|
1353
|
-
class IllegalMessageSizeException(_M_Ice.ProtocolException):
|
|
1354
|
-
"""
|
|
1355
|
-
This exception indicates that a message size is less
|
|
1356
|
-
than the minimum required size.
|
|
1357
|
-
"""
|
|
1358
|
-
def __init__(self, reason=''):
|
|
1359
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1360
|
-
|
|
1361
|
-
def __str__(self):
|
|
1362
|
-
return IcePy.stringifyException(self)
|
|
1363
|
-
|
|
1364
|
-
__repr__ = __str__
|
|
1365
|
-
|
|
1366
|
-
_ice_id = '::Ice::IllegalMessageSizeException'
|
|
1367
|
-
|
|
1368
|
-
_M_Ice._t_IllegalMessageSizeException = IcePy.defineException('::Ice::IllegalMessageSizeException', IllegalMessageSizeException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1369
|
-
IllegalMessageSizeException._ice_type = _M_Ice._t_IllegalMessageSizeException
|
|
1370
|
-
|
|
1371
|
-
_M_Ice.IllegalMessageSizeException = IllegalMessageSizeException
|
|
1372
|
-
del IllegalMessageSizeException
|
|
1373
|
-
|
|
1374
|
-
if 'CompressionException' not in _M_Ice.__dict__:
|
|
1375
|
-
_M_Ice.CompressionException = Ice.createTempClass()
|
|
1376
|
-
class CompressionException(_M_Ice.ProtocolException):
|
|
1377
|
-
"""
|
|
1378
|
-
This exception indicates a problem with compressing or uncompressing data.
|
|
1379
|
-
"""
|
|
1380
|
-
def __init__(self, reason=''):
|
|
1381
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1382
|
-
|
|
1383
|
-
def __str__(self):
|
|
1384
|
-
return IcePy.stringifyException(self)
|
|
1385
|
-
|
|
1386
|
-
__repr__ = __str__
|
|
1387
|
-
|
|
1388
|
-
_ice_id = '::Ice::CompressionException'
|
|
1389
|
-
|
|
1390
|
-
_M_Ice._t_CompressionException = IcePy.defineException('::Ice::CompressionException', CompressionException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1391
|
-
CompressionException._ice_type = _M_Ice._t_CompressionException
|
|
1392
|
-
|
|
1393
|
-
_M_Ice.CompressionException = CompressionException
|
|
1394
|
-
del CompressionException
|
|
1395
|
-
|
|
1396
|
-
if 'DatagramLimitException' not in _M_Ice.__dict__:
|
|
1397
|
-
_M_Ice.DatagramLimitException = Ice.createTempClass()
|
|
1398
|
-
class DatagramLimitException(_M_Ice.ProtocolException):
|
|
1399
|
-
"""
|
|
1400
|
-
A datagram exceeds the configured size.
|
|
1401
|
-
This exception is raised if a datagram exceeds the configured send or receive buffer
|
|
1402
|
-
size, or exceeds the maximum payload size of a UDP packet (65507 bytes).
|
|
1403
|
-
"""
|
|
1404
|
-
def __init__(self, reason=''):
|
|
1405
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1406
|
-
|
|
1407
|
-
def __str__(self):
|
|
1408
|
-
return IcePy.stringifyException(self)
|
|
1409
|
-
|
|
1410
|
-
__repr__ = __str__
|
|
1411
|
-
|
|
1412
|
-
_ice_id = '::Ice::DatagramLimitException'
|
|
1413
|
-
|
|
1414
|
-
_M_Ice._t_DatagramLimitException = IcePy.defineException('::Ice::DatagramLimitException', DatagramLimitException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1415
|
-
DatagramLimitException._ice_type = _M_Ice._t_DatagramLimitException
|
|
1416
|
-
|
|
1417
|
-
_M_Ice.DatagramLimitException = DatagramLimitException
|
|
1418
|
-
del DatagramLimitException
|
|
1419
|
-
|
|
1420
|
-
if 'MarshalException' not in _M_Ice.__dict__:
|
|
1421
|
-
_M_Ice.MarshalException = Ice.createTempClass()
|
|
1422
|
-
class MarshalException(_M_Ice.ProtocolException):
|
|
1423
|
-
"""
|
|
1424
|
-
This exception is raised for errors during marshaling or unmarshaling data.
|
|
1425
|
-
"""
|
|
1426
|
-
def __init__(self, reason=''):
|
|
1427
|
-
_M_Ice.ProtocolException.__init__(self, reason)
|
|
1428
|
-
|
|
1429
|
-
def __str__(self):
|
|
1430
|
-
return IcePy.stringifyException(self)
|
|
1431
|
-
|
|
1432
|
-
__repr__ = __str__
|
|
1433
|
-
|
|
1434
|
-
_ice_id = '::Ice::MarshalException'
|
|
1435
|
-
|
|
1436
|
-
_M_Ice._t_MarshalException = IcePy.defineException('::Ice::MarshalException', MarshalException, (), False, _M_Ice._t_ProtocolException, ())
|
|
1437
|
-
MarshalException._ice_type = _M_Ice._t_MarshalException
|
|
1438
|
-
|
|
1439
|
-
_M_Ice.MarshalException = MarshalException
|
|
1440
|
-
del MarshalException
|
|
1441
|
-
|
|
1442
|
-
if 'ProxyUnmarshalException' not in _M_Ice.__dict__:
|
|
1443
|
-
_M_Ice.ProxyUnmarshalException = Ice.createTempClass()
|
|
1444
|
-
class ProxyUnmarshalException(_M_Ice.MarshalException):
|
|
1445
|
-
"""
|
|
1446
|
-
This exception is raised if inconsistent data is received while unmarshaling a proxy.
|
|
1447
|
-
"""
|
|
1448
|
-
def __init__(self, reason=''):
|
|
1449
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1450
|
-
|
|
1451
|
-
def __str__(self):
|
|
1452
|
-
return IcePy.stringifyException(self)
|
|
1453
|
-
|
|
1454
|
-
__repr__ = __str__
|
|
1455
|
-
|
|
1456
|
-
_ice_id = '::Ice::ProxyUnmarshalException'
|
|
1457
|
-
|
|
1458
|
-
_M_Ice._t_ProxyUnmarshalException = IcePy.defineException('::Ice::ProxyUnmarshalException', ProxyUnmarshalException, (), False, _M_Ice._t_MarshalException, ())
|
|
1459
|
-
ProxyUnmarshalException._ice_type = _M_Ice._t_ProxyUnmarshalException
|
|
1460
|
-
|
|
1461
|
-
_M_Ice.ProxyUnmarshalException = ProxyUnmarshalException
|
|
1462
|
-
del ProxyUnmarshalException
|
|
1463
|
-
|
|
1464
|
-
if 'UnmarshalOutOfBoundsException' not in _M_Ice.__dict__:
|
|
1465
|
-
_M_Ice.UnmarshalOutOfBoundsException = Ice.createTempClass()
|
|
1466
|
-
class UnmarshalOutOfBoundsException(_M_Ice.MarshalException):
|
|
1467
|
-
"""
|
|
1468
|
-
This exception is raised if an out-of-bounds condition occurs during unmarshaling.
|
|
1469
|
-
"""
|
|
1470
|
-
def __init__(self, reason=''):
|
|
1471
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1472
|
-
|
|
1473
|
-
def __str__(self):
|
|
1474
|
-
return IcePy.stringifyException(self)
|
|
1475
|
-
|
|
1476
|
-
__repr__ = __str__
|
|
1477
|
-
|
|
1478
|
-
_ice_id = '::Ice::UnmarshalOutOfBoundsException'
|
|
1479
|
-
|
|
1480
|
-
_M_Ice._t_UnmarshalOutOfBoundsException = IcePy.defineException('::Ice::UnmarshalOutOfBoundsException', UnmarshalOutOfBoundsException, (), False, _M_Ice._t_MarshalException, ())
|
|
1481
|
-
UnmarshalOutOfBoundsException._ice_type = _M_Ice._t_UnmarshalOutOfBoundsException
|
|
1482
|
-
|
|
1483
|
-
_M_Ice.UnmarshalOutOfBoundsException = UnmarshalOutOfBoundsException
|
|
1484
|
-
del UnmarshalOutOfBoundsException
|
|
1485
|
-
|
|
1486
|
-
if 'NoValueFactoryException' not in _M_Ice.__dict__:
|
|
1487
|
-
_M_Ice.NoValueFactoryException = Ice.createTempClass()
|
|
1488
|
-
class NoValueFactoryException(_M_Ice.MarshalException):
|
|
1489
|
-
"""
|
|
1490
|
-
This exception is raised if no suitable value factory was found during
|
|
1491
|
-
unmarshaling of a Slice class instance.
|
|
1492
|
-
Members:
|
|
1493
|
-
type -- The Slice type ID of the class instance for which no
|
|
1494
|
-
no factory could be found.
|
|
1495
|
-
"""
|
|
1496
|
-
def __init__(self, reason='', type=''):
|
|
1497
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1498
|
-
self.type = type
|
|
1499
|
-
|
|
1500
|
-
def __str__(self):
|
|
1501
|
-
return IcePy.stringifyException(self)
|
|
1502
|
-
|
|
1503
|
-
__repr__ = __str__
|
|
1504
|
-
|
|
1505
|
-
_ice_id = '::Ice::NoValueFactoryException'
|
|
1506
|
-
|
|
1507
|
-
_M_Ice._t_NoValueFactoryException = IcePy.defineException('::Ice::NoValueFactoryException', NoValueFactoryException, (), False, _M_Ice._t_MarshalException, (('type', (), IcePy._t_string, False, 0),))
|
|
1508
|
-
NoValueFactoryException._ice_type = _M_Ice._t_NoValueFactoryException
|
|
1509
|
-
|
|
1510
|
-
_M_Ice.NoValueFactoryException = NoValueFactoryException
|
|
1511
|
-
del NoValueFactoryException
|
|
1512
|
-
|
|
1513
|
-
if 'UnexpectedObjectException' not in _M_Ice.__dict__:
|
|
1514
|
-
_M_Ice.UnexpectedObjectException = Ice.createTempClass()
|
|
1515
|
-
class UnexpectedObjectException(_M_Ice.MarshalException):
|
|
1516
|
-
"""
|
|
1517
|
-
This exception is raised if the type of an unmarshaled Slice class instance does
|
|
1518
|
-
not match its expected type.
|
|
1519
|
-
This can happen if client and server are compiled with mismatched Slice
|
|
1520
|
-
definitions or if a class of the wrong type is passed as a parameter
|
|
1521
|
-
or return value using dynamic invocation. This exception can also be
|
|
1522
|
-
raised if IceStorm is used to send Slice class instances and
|
|
1523
|
-
an operation is subscribed to the wrong topic.
|
|
1524
|
-
Members:
|
|
1525
|
-
type -- The Slice type ID of the class instance that was unmarshaled.
|
|
1526
|
-
expectedType -- The Slice type ID that was expected by the receiving operation.
|
|
1527
|
-
"""
|
|
1528
|
-
def __init__(self, reason='', type='', expectedType=''):
|
|
1529
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1530
|
-
self.type = type
|
|
1531
|
-
self.expectedType = expectedType
|
|
1532
|
-
|
|
1533
|
-
def __str__(self):
|
|
1534
|
-
return IcePy.stringifyException(self)
|
|
1535
|
-
|
|
1536
|
-
__repr__ = __str__
|
|
1537
|
-
|
|
1538
|
-
_ice_id = '::Ice::UnexpectedObjectException'
|
|
1539
|
-
|
|
1540
|
-
_M_Ice._t_UnexpectedObjectException = IcePy.defineException('::Ice::UnexpectedObjectException', UnexpectedObjectException, (), False, _M_Ice._t_MarshalException, (
|
|
1541
|
-
('type', (), IcePy._t_string, False, 0),
|
|
1542
|
-
('expectedType', (), IcePy._t_string, False, 0)
|
|
1543
|
-
))
|
|
1544
|
-
UnexpectedObjectException._ice_type = _M_Ice._t_UnexpectedObjectException
|
|
1545
|
-
|
|
1546
|
-
_M_Ice.UnexpectedObjectException = UnexpectedObjectException
|
|
1547
|
-
del UnexpectedObjectException
|
|
1548
|
-
|
|
1549
|
-
if 'MemoryLimitException' not in _M_Ice.__dict__:
|
|
1550
|
-
_M_Ice.MemoryLimitException = Ice.createTempClass()
|
|
1551
|
-
class MemoryLimitException(_M_Ice.MarshalException):
|
|
1552
|
-
"""
|
|
1553
|
-
This exception is raised when Ice receives a request or reply
|
|
1554
|
-
message whose size exceeds the limit specified by the
|
|
1555
|
-
Ice.MessageSizeMax property.
|
|
1556
|
-
"""
|
|
1557
|
-
def __init__(self, reason=''):
|
|
1558
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1559
|
-
|
|
1560
|
-
def __str__(self):
|
|
1561
|
-
return IcePy.stringifyException(self)
|
|
1562
|
-
|
|
1563
|
-
__repr__ = __str__
|
|
1564
|
-
|
|
1565
|
-
_ice_id = '::Ice::MemoryLimitException'
|
|
1566
|
-
|
|
1567
|
-
_M_Ice._t_MemoryLimitException = IcePy.defineException('::Ice::MemoryLimitException', MemoryLimitException, (), False, _M_Ice._t_MarshalException, ())
|
|
1568
|
-
MemoryLimitException._ice_type = _M_Ice._t_MemoryLimitException
|
|
1569
|
-
|
|
1570
|
-
_M_Ice.MemoryLimitException = MemoryLimitException
|
|
1571
|
-
del MemoryLimitException
|
|
1572
|
-
|
|
1573
|
-
if 'StringConversionException' not in _M_Ice.__dict__:
|
|
1574
|
-
_M_Ice.StringConversionException = Ice.createTempClass()
|
|
1575
|
-
class StringConversionException(_M_Ice.MarshalException):
|
|
1576
|
-
"""
|
|
1577
|
-
This exception is raised when a string conversion to or from UTF-8
|
|
1578
|
-
fails during marshaling or unmarshaling.
|
|
1579
|
-
"""
|
|
1580
|
-
def __init__(self, reason=''):
|
|
1581
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1582
|
-
|
|
1583
|
-
def __str__(self):
|
|
1584
|
-
return IcePy.stringifyException(self)
|
|
1585
|
-
|
|
1586
|
-
__repr__ = __str__
|
|
1587
|
-
|
|
1588
|
-
_ice_id = '::Ice::StringConversionException'
|
|
1589
|
-
|
|
1590
|
-
_M_Ice._t_StringConversionException = IcePy.defineException('::Ice::StringConversionException', StringConversionException, (), False, _M_Ice._t_MarshalException, ())
|
|
1591
|
-
StringConversionException._ice_type = _M_Ice._t_StringConversionException
|
|
1592
|
-
|
|
1593
|
-
_M_Ice.StringConversionException = StringConversionException
|
|
1594
|
-
del StringConversionException
|
|
1595
|
-
|
|
1596
|
-
if 'EncapsulationException' not in _M_Ice.__dict__:
|
|
1597
|
-
_M_Ice.EncapsulationException = Ice.createTempClass()
|
|
1598
|
-
class EncapsulationException(_M_Ice.MarshalException):
|
|
1599
|
-
"""
|
|
1600
|
-
This exception indicates a malformed data encapsulation.
|
|
1601
|
-
"""
|
|
1602
|
-
def __init__(self, reason=''):
|
|
1603
|
-
_M_Ice.MarshalException.__init__(self, reason)
|
|
1604
|
-
|
|
1605
|
-
def __str__(self):
|
|
1606
|
-
return IcePy.stringifyException(self)
|
|
1607
|
-
|
|
1608
|
-
__repr__ = __str__
|
|
1609
|
-
|
|
1610
|
-
_ice_id = '::Ice::EncapsulationException'
|
|
1611
|
-
|
|
1612
|
-
_M_Ice._t_EncapsulationException = IcePy.defineException('::Ice::EncapsulationException', EncapsulationException, (), False, _M_Ice._t_MarshalException, ())
|
|
1613
|
-
EncapsulationException._ice_type = _M_Ice._t_EncapsulationException
|
|
1614
|
-
|
|
1615
|
-
_M_Ice.EncapsulationException = EncapsulationException
|
|
1616
|
-
del EncapsulationException
|
|
1617
|
-
|
|
1618
|
-
if 'FeatureNotSupportedException' not in _M_Ice.__dict__:
|
|
1619
|
-
_M_Ice.FeatureNotSupportedException = Ice.createTempClass()
|
|
1620
|
-
class FeatureNotSupportedException(Ice.LocalException):
|
|
1621
|
-
"""
|
|
1622
|
-
This exception is raised if an unsupported feature is used. The
|
|
1623
|
-
unsupported feature string contains the name of the unsupported
|
|
1624
|
-
feature
|
|
1625
|
-
Members:
|
|
1626
|
-
unsupportedFeature -- The name of the unsupported feature.
|
|
1627
|
-
"""
|
|
1628
|
-
def __init__(self, unsupportedFeature=''):
|
|
1629
|
-
self.unsupportedFeature = unsupportedFeature
|
|
1630
|
-
|
|
1631
|
-
def __str__(self):
|
|
1632
|
-
return IcePy.stringifyException(self)
|
|
1633
|
-
|
|
1634
|
-
__repr__ = __str__
|
|
1635
|
-
|
|
1636
|
-
_ice_id = '::Ice::FeatureNotSupportedException'
|
|
1637
|
-
|
|
1638
|
-
_M_Ice._t_FeatureNotSupportedException = IcePy.defineException('::Ice::FeatureNotSupportedException', FeatureNotSupportedException, (), False, None, (('unsupportedFeature', (), IcePy._t_string, False, 0),))
|
|
1639
|
-
FeatureNotSupportedException._ice_type = _M_Ice._t_FeatureNotSupportedException
|
|
1640
|
-
|
|
1641
|
-
_M_Ice.FeatureNotSupportedException = FeatureNotSupportedException
|
|
1642
|
-
del FeatureNotSupportedException
|
|
1643
|
-
|
|
1644
|
-
if 'SecurityException' not in _M_Ice.__dict__:
|
|
1645
|
-
_M_Ice.SecurityException = Ice.createTempClass()
|
|
1646
|
-
class SecurityException(Ice.LocalException):
|
|
1647
|
-
"""
|
|
1648
|
-
This exception indicates a failure in a security subsystem,
|
|
1649
|
-
such as the IceSSL plug-in.
|
|
1650
|
-
Members:
|
|
1651
|
-
reason -- The reason for the failure.
|
|
1652
|
-
"""
|
|
1653
|
-
def __init__(self, reason=''):
|
|
1654
|
-
self.reason = reason
|
|
1655
|
-
|
|
1656
|
-
def __str__(self):
|
|
1657
|
-
return IcePy.stringifyException(self)
|
|
1658
|
-
|
|
1659
|
-
__repr__ = __str__
|
|
1660
|
-
|
|
1661
|
-
_ice_id = '::Ice::SecurityException'
|
|
1662
|
-
|
|
1663
|
-
_M_Ice._t_SecurityException = IcePy.defineException('::Ice::SecurityException', SecurityException, (), False, None, (('reason', (), IcePy._t_string, False, 0),))
|
|
1664
|
-
SecurityException._ice_type = _M_Ice._t_SecurityException
|
|
1665
|
-
|
|
1666
|
-
_M_Ice.SecurityException = SecurityException
|
|
1667
|
-
del SecurityException
|
|
1668
|
-
|
|
1669
|
-
if 'FixedProxyException' not in _M_Ice.__dict__:
|
|
1670
|
-
_M_Ice.FixedProxyException = Ice.createTempClass()
|
|
1671
|
-
class FixedProxyException(Ice.LocalException):
|
|
1672
|
-
"""
|
|
1673
|
-
This exception indicates that an attempt has been made to
|
|
1674
|
-
change the connection properties of a fixed proxy.
|
|
1675
|
-
"""
|
|
1676
|
-
def __init__(self):
|
|
1677
|
-
pass
|
|
1678
|
-
|
|
1679
|
-
def __str__(self):
|
|
1680
|
-
return IcePy.stringifyException(self)
|
|
1681
|
-
|
|
1682
|
-
__repr__ = __str__
|
|
1683
|
-
|
|
1684
|
-
_ice_id = '::Ice::FixedProxyException'
|
|
1685
|
-
|
|
1686
|
-
_M_Ice._t_FixedProxyException = IcePy.defineException('::Ice::FixedProxyException', FixedProxyException, (), False, None, ())
|
|
1687
|
-
FixedProxyException._ice_type = _M_Ice._t_FixedProxyException
|
|
1688
|
-
|
|
1689
|
-
_M_Ice.FixedProxyException = FixedProxyException
|
|
1690
|
-
del FixedProxyException
|
|
1691
|
-
|
|
1692
|
-
if 'ResponseSentException' not in _M_Ice.__dict__:
|
|
1693
|
-
_M_Ice.ResponseSentException = Ice.createTempClass()
|
|
1694
|
-
class ResponseSentException(Ice.LocalException):
|
|
1695
|
-
"""
|
|
1696
|
-
Indicates that the response to a request has already been sent;
|
|
1697
|
-
re-dispatching such a request is not possible.
|
|
1698
|
-
"""
|
|
1699
|
-
def __init__(self):
|
|
1700
|
-
pass
|
|
1701
|
-
|
|
1702
|
-
def __str__(self):
|
|
1703
|
-
return IcePy.stringifyException(self)
|
|
1704
|
-
|
|
1705
|
-
__repr__ = __str__
|
|
1706
|
-
|
|
1707
|
-
_ice_id = '::Ice::ResponseSentException'
|
|
1708
|
-
|
|
1709
|
-
_M_Ice._t_ResponseSentException = IcePy.defineException('::Ice::ResponseSentException', ResponseSentException, (), False, None, ())
|
|
1710
|
-
ResponseSentException._ice_type = _M_Ice._t_ResponseSentException
|
|
1711
|
-
|
|
1712
|
-
_M_Ice.ResponseSentException = ResponseSentException
|
|
1713
|
-
del ResponseSentException
|
|
1714
|
-
|
|
1715
|
-
# End of module Ice
|