LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Public Member Functions | List of all members
lsst.utils.multithreading.lockProtection.UnsafeAccessError Class Reference
Inheritance diagram for lsst.utils.multithreading.lockProtection.UnsafeAccessError:

Public Member Functions

def __init__
 

Detailed Description

an exception that is raised when one attempts to access a protected
method without first acquiring the lock on its class.

Definition at line 94 of file lockProtection.py.

Constructor & Destructor Documentation

def lsst.utils.multithreading.lockProtection.UnsafeAccessError.__init__ (   self,
  msg = None 
)

Definition at line 99 of file lockProtection.py.

99 
100  def __init__(self, msg=None):
101  if not msg:
102  msg = "Programmer Error: failed to obtain lock via with statement"
103  Exception.__init__(self, msg)
104 

The documentation for this class was generated from the following file: