1 # Copyright (c) 2019 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
6 # http://www.apache.org/licenses/LICENSE-2.0
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
14 """Implementation of exceptions used in the Presentation and analytics layer.
21 class PresentationError(Exception):
22 """Exception(s) raised by the presentation module.
24 When raising this exception, put this information to the message in this
26 - short description of the encountered problem (parameter msg),
27 - relevant messages if there are any collected, e.g., from caught
28 exception (optional parameter details),
29 - relevant data if there are any collected (optional parameter details).
32 log_exception = {u"DEBUG": logging.debug,
33 u"INFO": logging.info,
34 u"WARNING": logging.warning,
35 u"ERROR": logging.error,
36 u"CRITICAL": logging.critical}
38 def __init__(self, msg, details=u'', level=u"CRITICAL"):
39 """Sets the exception message and the level.
41 :param msg: Short description of the encountered problem.
42 :param details: Relevant messages if there are any collected, e.g.,
43 from caught exception (optional parameter details), or relevant data
44 if there are any collected (optional parameter details).
45 :param level: Level of the error, possible choices are: "DEBUG", "INFO",
46 "WARNING", "ERROR" and "CRITICAL".
52 super(PresentationError, self).__init__()
54 self._details = details
58 self.log_exception[self._level](self._msg)
60 self.log_exception[self._level](self._details)
62 print(u"Wrong log level.")
67 f"PresentationError(msg={self._msg!r},details={self._details!r},"
68 f"level={self._level!r})"
76 """Getter - logging level.
78 :returns: Logging level.