/usr/share/pyshared/IceGrid_Exception_ice.py is in python-zeroc-ice 3.4.2-8.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | # **********************************************************************
#
# Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
#
# Ice version 3.4.2
#
# <auto-generated>
#
# Generated from file `Exception.ice'
#
# Warning: do not edit this file.
#
# </auto-generated>
#
import Ice, IcePy, __builtin__
import Ice_Identity_ice
import Ice_BuiltinSequences_ice
# Included module Ice
_M_Ice = Ice.openModule('Ice')
# Start of module IceGrid
_M_IceGrid = Ice.openModule('IceGrid')
__name__ = 'IceGrid'
if not _M_IceGrid.__dict__.has_key('ApplicationNotExistException'):
_M_IceGrid.ApplicationNotExistException = Ice.createTempClass()
class ApplicationNotExistException(Ice.UserException):
'''This exception is raised if an application does not exist.'''
def __init__(self, name=''):
self.name = name
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ApplicationNotExistException'
_M_IceGrid._t_ApplicationNotExistException = IcePy.defineException('::IceGrid::ApplicationNotExistException', ApplicationNotExistException, (), None, (('name', (), IcePy._t_string),))
ApplicationNotExistException._ice_type = _M_IceGrid._t_ApplicationNotExistException
_M_IceGrid.ApplicationNotExistException = ApplicationNotExistException
del ApplicationNotExistException
if not _M_IceGrid.__dict__.has_key('ServerNotExistException'):
_M_IceGrid.ServerNotExistException = Ice.createTempClass()
class ServerNotExistException(Ice.UserException):
'''This exception is raised if a server does not exist.'''
def __init__(self, id=''):
self.id = id
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ServerNotExistException'
_M_IceGrid._t_ServerNotExistException = IcePy.defineException('::IceGrid::ServerNotExistException', ServerNotExistException, (), None, (('id', (), IcePy._t_string),))
ServerNotExistException._ice_type = _M_IceGrid._t_ServerNotExistException
_M_IceGrid.ServerNotExistException = ServerNotExistException
del ServerNotExistException
if not _M_IceGrid.__dict__.has_key('ServerStartException'):
_M_IceGrid.ServerStartException = Ice.createTempClass()
class ServerStartException(Ice.UserException):
'''This exception is raised if a server failed to start.'''
def __init__(self, id='', reason=''):
self.id = id
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ServerStartException'
_M_IceGrid._t_ServerStartException = IcePy.defineException('::IceGrid::ServerStartException', ServerStartException, (), None, (
('id', (), IcePy._t_string),
('reason', (), IcePy._t_string)
))
ServerStartException._ice_type = _M_IceGrid._t_ServerStartException
_M_IceGrid.ServerStartException = ServerStartException
del ServerStartException
if not _M_IceGrid.__dict__.has_key('ServerStopException'):
_M_IceGrid.ServerStopException = Ice.createTempClass()
class ServerStopException(Ice.UserException):
'''This exception is raised if a server failed to stop.'''
def __init__(self, id='', reason=''):
self.id = id
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ServerStopException'
_M_IceGrid._t_ServerStopException = IcePy.defineException('::IceGrid::ServerStopException', ServerStopException, (), None, (
('id', (), IcePy._t_string),
('reason', (), IcePy._t_string)
))
ServerStopException._ice_type = _M_IceGrid._t_ServerStopException
_M_IceGrid.ServerStopException = ServerStopException
del ServerStopException
if not _M_IceGrid.__dict__.has_key('AdapterNotExistException'):
_M_IceGrid.AdapterNotExistException = Ice.createTempClass()
class AdapterNotExistException(Ice.UserException):
'''This exception is raised if an adapter does not exist.'''
def __init__(self, id=''):
self.id = id
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::AdapterNotExistException'
_M_IceGrid._t_AdapterNotExistException = IcePy.defineException('::IceGrid::AdapterNotExistException', AdapterNotExistException, (), None, (('id', (), IcePy._t_string),))
AdapterNotExistException._ice_type = _M_IceGrid._t_AdapterNotExistException
_M_IceGrid.AdapterNotExistException = AdapterNotExistException
del AdapterNotExistException
if not _M_IceGrid.__dict__.has_key('ObjectExistsException'):
_M_IceGrid.ObjectExistsException = Ice.createTempClass()
class ObjectExistsException(Ice.UserException):
'''This exception is raised if an object already exists.'''
def __init__(self, id=Ice._struct_marker):
if id is Ice._struct_marker:
self.id = _M_Ice.Identity()
else:
self.id = id
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ObjectExistsException'
_M_IceGrid._t_ObjectExistsException = IcePy.defineException('::IceGrid::ObjectExistsException', ObjectExistsException, (), None, (('id', (), _M_Ice._t_Identity),))
ObjectExistsException._ice_type = _M_IceGrid._t_ObjectExistsException
_M_IceGrid.ObjectExistsException = ObjectExistsException
del ObjectExistsException
if not _M_IceGrid.__dict__.has_key('ObjectNotRegisteredException'):
_M_IceGrid.ObjectNotRegisteredException = Ice.createTempClass()
class ObjectNotRegisteredException(Ice.UserException):
'''This exception is raised if an object is not registered.'''
def __init__(self, id=Ice._struct_marker):
if id is Ice._struct_marker:
self.id = _M_Ice.Identity()
else:
self.id = id
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ObjectNotRegisteredException'
_M_IceGrid._t_ObjectNotRegisteredException = IcePy.defineException('::IceGrid::ObjectNotRegisteredException', ObjectNotRegisteredException, (), None, (('id', (), _M_Ice._t_Identity),))
ObjectNotRegisteredException._ice_type = _M_IceGrid._t_ObjectNotRegisteredException
_M_IceGrid.ObjectNotRegisteredException = ObjectNotRegisteredException
del ObjectNotRegisteredException
if not _M_IceGrid.__dict__.has_key('NodeNotExistException'):
_M_IceGrid.NodeNotExistException = Ice.createTempClass()
class NodeNotExistException(Ice.UserException):
'''This exception is raised if a node does not exist.'''
def __init__(self, name=''):
self.name = name
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::NodeNotExistException'
_M_IceGrid._t_NodeNotExistException = IcePy.defineException('::IceGrid::NodeNotExistException', NodeNotExistException, (), None, (('name', (), IcePy._t_string),))
NodeNotExistException._ice_type = _M_IceGrid._t_NodeNotExistException
_M_IceGrid.NodeNotExistException = NodeNotExistException
del NodeNotExistException
if not _M_IceGrid.__dict__.has_key('RegistryNotExistException'):
_M_IceGrid.RegistryNotExistException = Ice.createTempClass()
class RegistryNotExistException(Ice.UserException):
'''This exception is raised if a registry does not exist.'''
def __init__(self, name=''):
self.name = name
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::RegistryNotExistException'
_M_IceGrid._t_RegistryNotExistException = IcePy.defineException('::IceGrid::RegistryNotExistException', RegistryNotExistException, (), None, (('name', (), IcePy._t_string),))
RegistryNotExistException._ice_type = _M_IceGrid._t_RegistryNotExistException
_M_IceGrid.RegistryNotExistException = RegistryNotExistException
del RegistryNotExistException
if not _M_IceGrid.__dict__.has_key('DeploymentException'):
_M_IceGrid.DeploymentException = Ice.createTempClass()
class DeploymentException(Ice.UserException):
'''An exception for deployment errors.'''
def __init__(self, reason=''):
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::DeploymentException'
_M_IceGrid._t_DeploymentException = IcePy.defineException('::IceGrid::DeploymentException', DeploymentException, (), None, (('reason', (), IcePy._t_string),))
DeploymentException._ice_type = _M_IceGrid._t_DeploymentException
_M_IceGrid.DeploymentException = DeploymentException
del DeploymentException
if not _M_IceGrid.__dict__.has_key('NodeUnreachableException'):
_M_IceGrid.NodeUnreachableException = Ice.createTempClass()
class NodeUnreachableException(Ice.UserException):
'''This exception is raised if a node could not be reached.'''
def __init__(self, name='', reason=''):
self.name = name
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::NodeUnreachableException'
_M_IceGrid._t_NodeUnreachableException = IcePy.defineException('::IceGrid::NodeUnreachableException', NodeUnreachableException, (), None, (
('name', (), IcePy._t_string),
('reason', (), IcePy._t_string)
))
NodeUnreachableException._ice_type = _M_IceGrid._t_NodeUnreachableException
_M_IceGrid.NodeUnreachableException = NodeUnreachableException
del NodeUnreachableException
if not _M_IceGrid.__dict__.has_key('ServerUnreachableException'):
_M_IceGrid.ServerUnreachableException = Ice.createTempClass()
class ServerUnreachableException(Ice.UserException):
'''This exception is raised if a server could not be reached.'''
def __init__(self, name='', reason=''):
self.name = name
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ServerUnreachableException'
_M_IceGrid._t_ServerUnreachableException = IcePy.defineException('::IceGrid::ServerUnreachableException', ServerUnreachableException, (), None, (
('name', (), IcePy._t_string),
('reason', (), IcePy._t_string)
))
ServerUnreachableException._ice_type = _M_IceGrid._t_ServerUnreachableException
_M_IceGrid.ServerUnreachableException = ServerUnreachableException
del ServerUnreachableException
if not _M_IceGrid.__dict__.has_key('RegistryUnreachableException'):
_M_IceGrid.RegistryUnreachableException = Ice.createTempClass()
class RegistryUnreachableException(Ice.UserException):
'''This exception is raised if a registry could not be reached.'''
def __init__(self, name='', reason=''):
self.name = name
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::RegistryUnreachableException'
_M_IceGrid._t_RegistryUnreachableException = IcePy.defineException('::IceGrid::RegistryUnreachableException', RegistryUnreachableException, (), None, (
('name', (), IcePy._t_string),
('reason', (), IcePy._t_string)
))
RegistryUnreachableException._ice_type = _M_IceGrid._t_RegistryUnreachableException
_M_IceGrid.RegistryUnreachableException = RegistryUnreachableException
del RegistryUnreachableException
if not _M_IceGrid.__dict__.has_key('BadSignalException'):
_M_IceGrid.BadSignalException = Ice.createTempClass()
class BadSignalException(Ice.UserException):
'''This exception is raised if an unknown signal was sent to
to a server.'''
def __init__(self, reason=''):
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::BadSignalException'
_M_IceGrid._t_BadSignalException = IcePy.defineException('::IceGrid::BadSignalException', BadSignalException, (), None, (('reason', (), IcePy._t_string),))
BadSignalException._ice_type = _M_IceGrid._t_BadSignalException
_M_IceGrid.BadSignalException = BadSignalException
del BadSignalException
if not _M_IceGrid.__dict__.has_key('PatchException'):
_M_IceGrid.PatchException = Ice.createTempClass()
class PatchException(Ice.UserException):
'''This exception is raised if a patch failed.'''
def __init__(self, reasons=None):
self.reasons = reasons
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::PatchException'
_M_IceGrid._t_PatchException = IcePy.defineException('::IceGrid::PatchException', PatchException, (), None, (('reasons', (), _M_Ice._t_StringSeq),))
PatchException._ice_type = _M_IceGrid._t_PatchException
_M_IceGrid.PatchException = PatchException
del PatchException
if not _M_IceGrid.__dict__.has_key('AccessDeniedException'):
_M_IceGrid.AccessDeniedException = Ice.createTempClass()
class AccessDeniedException(Ice.UserException):
'''This exception is raised if a registry lock wasn't
acquired or is already held by a session.'''
def __init__(self, lockUserId=''):
self.lockUserId = lockUserId
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::AccessDeniedException'
_M_IceGrid._t_AccessDeniedException = IcePy.defineException('::IceGrid::AccessDeniedException', AccessDeniedException, (), None, (('lockUserId', (), IcePy._t_string),))
AccessDeniedException._ice_type = _M_IceGrid._t_AccessDeniedException
_M_IceGrid.AccessDeniedException = AccessDeniedException
del AccessDeniedException
if not _M_IceGrid.__dict__.has_key('AllocationException'):
_M_IceGrid.AllocationException = Ice.createTempClass()
class AllocationException(Ice.UserException):
'''This exception is raised if the allocation of an object failed.'''
def __init__(self, reason=''):
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::AllocationException'
_M_IceGrid._t_AllocationException = IcePy.defineException('::IceGrid::AllocationException', AllocationException, (), None, (('reason', (), IcePy._t_string),))
AllocationException._ice_type = _M_IceGrid._t_AllocationException
_M_IceGrid.AllocationException = AllocationException
del AllocationException
if not _M_IceGrid.__dict__.has_key('AllocationTimeoutException'):
_M_IceGrid.AllocationTimeoutException = Ice.createTempClass()
class AllocationTimeoutException(_M_IceGrid.AllocationException):
'''This exception is raised if the request to allocate an object times
out.'''
def __init__(self, reason=''):
_M_IceGrid.AllocationException.__init__(self, reason)
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::AllocationTimeoutException'
_M_IceGrid._t_AllocationTimeoutException = IcePy.defineException('::IceGrid::AllocationTimeoutException', AllocationTimeoutException, (), _M_IceGrid._t_AllocationException, ())
AllocationTimeoutException._ice_type = _M_IceGrid._t_AllocationTimeoutException
_M_IceGrid.AllocationTimeoutException = AllocationTimeoutException
del AllocationTimeoutException
if not _M_IceGrid.__dict__.has_key('PermissionDeniedException'):
_M_IceGrid.PermissionDeniedException = Ice.createTempClass()
class PermissionDeniedException(Ice.UserException):
'''This exception is raised if a client is denied the ability to create
a session with IceGrid.'''
def __init__(self, reason=''):
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::PermissionDeniedException'
_M_IceGrid._t_PermissionDeniedException = IcePy.defineException('::IceGrid::PermissionDeniedException', PermissionDeniedException, (), None, (('reason', (), IcePy._t_string),))
PermissionDeniedException._ice_type = _M_IceGrid._t_PermissionDeniedException
_M_IceGrid.PermissionDeniedException = PermissionDeniedException
del PermissionDeniedException
if not _M_IceGrid.__dict__.has_key('ObserverAlreadyRegisteredException'):
_M_IceGrid.ObserverAlreadyRegisteredException = Ice.createTempClass()
class ObserverAlreadyRegisteredException(Ice.UserException):
'''This exception is raised if an observer is already registered with
the registry.'''
def __init__(self, id=Ice._struct_marker):
if id is Ice._struct_marker:
self.id = _M_Ice.Identity()
else:
self.id = id
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::ObserverAlreadyRegisteredException'
_M_IceGrid._t_ObserverAlreadyRegisteredException = IcePy.defineException('::IceGrid::ObserverAlreadyRegisteredException', ObserverAlreadyRegisteredException, (), None, (('id', (), _M_Ice._t_Identity),))
ObserverAlreadyRegisteredException._ice_type = _M_IceGrid._t_ObserverAlreadyRegisteredException
_M_IceGrid.ObserverAlreadyRegisteredException = ObserverAlreadyRegisteredException
del ObserverAlreadyRegisteredException
if not _M_IceGrid.__dict__.has_key('FileNotAvailableException'):
_M_IceGrid.FileNotAvailableException = Ice.createTempClass()
class FileNotAvailableException(Ice.UserException):
'''This exception is raised if a file is not available.'''
def __init__(self, reason=''):
self.reason = reason
def __str__(self):
return IcePy.stringifyException(self)
__repr__ = __str__
_ice_name = 'IceGrid::FileNotAvailableException'
_M_IceGrid._t_FileNotAvailableException = IcePy.defineException('::IceGrid::FileNotAvailableException', FileNotAvailableException, (), None, (('reason', (), IcePy._t_string),))
FileNotAvailableException._ice_type = _M_IceGrid._t_FileNotAvailableException
_M_IceGrid.FileNotAvailableException = FileNotAvailableException
del FileNotAvailableException
# End of module IceGrid
Ice.sliceChecksums["::IceGrid::AccessDeniedException"] = "e39e5ad60577c1e7b52e190e1d906b"
Ice.sliceChecksums["::IceGrid::AdapterNotExistException"] = "cee552cb69227f723030cd78b0cccc97"
Ice.sliceChecksums["::IceGrid::AllocationException"] = "ea85a8e5e5f281709bf6aa88d742"
Ice.sliceChecksums["::IceGrid::AllocationTimeoutException"] = "6695f5713499ac6de0626277e167f553"
Ice.sliceChecksums["::IceGrid::ApplicationNotExistException"] = "93fdaabe25dcf75485ffd4972223610"
Ice.sliceChecksums["::IceGrid::BadSignalException"] = "13e67e2d3f46a84aa73fd56d5812caf1"
Ice.sliceChecksums["::IceGrid::DeploymentException"] = "e316fdba8e93ef72d58bd61bbfe29e4"
Ice.sliceChecksums["::IceGrid::FileNotAvailableException"] = "a3e88ae3be93ecd4c82797ad26d6076"
Ice.sliceChecksums["::IceGrid::NodeNotExistException"] = "f07ddace1aa3cb1bbed37c3fbf862dff"
Ice.sliceChecksums["::IceGrid::NodeUnreachableException"] = "8f894a5022704f4dde30bb2a3ea326f9"
Ice.sliceChecksums["::IceGrid::ObjectExistsException"] = "833f69d3ebc872974a9f096352d2ddb"
Ice.sliceChecksums["::IceGrid::ObjectNotRegisteredException"] = "cb181c92b4dfb6e6b97f4ca806899e7"
Ice.sliceChecksums["::IceGrid::ObserverAlreadyRegisteredException"] = "e1267578f9666e2bda9952d7106fd12c"
Ice.sliceChecksums["::IceGrid::PatchException"] = "c28994d76c834b99b94cf4535a13d3"
Ice.sliceChecksums["::IceGrid::PermissionDeniedException"] = "27def8d4569ab203b629b9162d530ba"
Ice.sliceChecksums["::IceGrid::RegistryNotExistException"] = "9e1c1b717e9c5ef72886f16dbfce56f"
Ice.sliceChecksums["::IceGrid::RegistryUnreachableException"] = "514020cac28c588ae487a628e227699"
Ice.sliceChecksums["::IceGrid::ServerNotExistException"] = "6df151f3ce87bd522ed095f7ad97a941"
Ice.sliceChecksums["::IceGrid::ServerStartException"] = "ce92acafa218dd1d1e8aafab20d1"
Ice.sliceChecksums["::IceGrid::ServerStopException"] = "edb57abb5393b8b31b41f3a8e5bd111"
Ice.sliceChecksums["::IceGrid::ServerUnreachableException"] = "f3233583ef7ad8eac2f961aedafdd64"
|