forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.py
65 lines (49 loc) · 2.05 KB
/
exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This code is part of Qiskit.
#
# (C) Copyright IBM 2017, 2020.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
"""Exceptions for errors raised by Qiskit."""
from typing import Optional
class QiskitError(Exception):
"""Base class for errors raised by Qiskit."""
def __init__(self, *message):
"""Set the error message."""
super().__init__(" ".join(message))
self.message = " ".join(message)
def __str__(self):
"""Return the message."""
return repr(self.message)
class QiskitUserConfigError(QiskitError):
"""Raised when an error is encountered reading a user config file."""
message = "User config invalid"
class MissingOptionalLibraryError(QiskitError, ImportError):
"""Raised when an optional library is missing."""
def __init__(
self, libname: str, name: str, pip_install: Optional[str] = None, msg: Optional[str] = None
) -> None:
"""Set the error message.
Args:
libname: Name of missing library
name: Name of class, function, module that uses this library
pip_install: pip install command, if any
msg: Descriptive message, if any
"""
message = [f"The '{libname}' library is required to use '{name}'."]
if pip_install:
message.append(f"You can install it with '{pip_install}'.")
if msg:
message.append(f" {msg}.")
super().__init__(" ".join(message))
self.message = " ".join(message)
def __str__(self) -> str:
"""Return the message."""
return repr(self.message)
class InvalidFileError(QiskitError):
"""Raised when the file provided is not valid for the specific task."""