1 from builtins
import str
33 def __init__(self, message, datasetType, dataId):
34 message +=
' datasetType:' + datasetType +
' dataId:' + str(dataId)
35 super(NoResults, self).
__init__(message)
40 def __init__(self, message, datasetType, dataId, locations):
41 message +=
' datasetType:' + datasetType +
' dataId:' + str(dataId) +
' locations:' 42 for location
in locations:
43 message +=
' ' + str(location)
44 super(MultipleResults, self).
__init__(message)
49 """Raised when issues arise related to the list of parents in a RepositoryCfg not matching the expected 53 super(ParentsMismatch, self).
__init__(message)
def __init__(self, message, datasetType, dataId, locations)
def __init__(self, message)
def __init__(self, message, datasetType, dataId)