22 from builtins
import str, super
31 def __init__(self, message, datasetType, dataId):
32 message +=
' datasetType:' + datasetType +
' dataId:' +
str(dataId)
38 def __init__(self, message, datasetType, dataId, locations):
39 message +=
' datasetType:' + datasetType +
' dataId:' +
str(dataId) +
' locations:' 40 for location
in locations:
41 message +=
' ' +
str(location)
47 """Raised when issues arise related to the list of parents in a RepositoryCfg not matching the expected def __init__(self, message, datasetType, dataId, locations)
def __init__(self, message)
def __init__(self, message, datasetType, dataId)