ATLAS Offline Software
exceptions.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2 
3 class DefectExistsError(Exception):
4  "The defect ID or name which was inserted already exists in COOL"
5 
6 class DefectUnknownError(RuntimeError):
7  "The defect ID or string specified is unknown in the COOL database"
8 
9 class InvalidTagError(RuntimeError):
10  "The tag specified is unknown"
11 
13  """
14  The defects tag was requested, but the requested tag couldn't be resolved
15  for the defect folder.
16  """
17 
19  """
20  The logic tag was requested, but the requested tag couldn't be resolved
21  for the logic folder.
22  """
python.exceptions.InvalidDefectTagError
Definition: exceptions.py:12
python.exceptions.DefectUnknownError
Definition: exceptions.py:6
python.exceptions.DefectExistsError
Definition: exceptions.py:3
python.exceptions.InvalidTagError
Definition: exceptions.py:9
python.exceptions.InvalidLogicTagError
Definition: exceptions.py:18