Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.ibmq.exceptions의 소스 코드

# This code is part of Qiskit.
#
# (C) Copyright IBM 2018, 2019.
#
# 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 related to the IBM Quantum Experience provider."""

from qiskit.exceptions import QiskitError


[문서]class IBMQError(QiskitError): """Base class for errors raised by the provider modules.""" pass
[문서]class IBMQAccountError(IBMQError): """Base class for errors raised by account management.""" pass
class IBMQAccountValueError(IBMQError): """Value errors raised by account management."""
[문서]class IBMQAccountCredentialsNotFound(IBMQAccountError): """Errors raised when credentials are not found.""" pass
[문서]class IBMQAccountCredentialsInvalidFormat(IBMQAccountError): """Errors raised when the credentials format is invalid.""" pass
[문서]class IBMQAccountCredentialsInvalidToken(IBMQAccountError): """Errors raised when an IBM Quantum Experience token is invalid.""" pass
[문서]class IBMQAccountCredentialsInvalidUrl(IBMQAccountError): """Errors raised when an IBM Quantum Experience URL is invalid.""" pass
[문서]class IBMQAccountMultipleCredentialsFound(IBMQAccountError): """Errors raised when multiple credentials are found.""" pass
[문서]class IBMQProviderError(IBMQAccountError): """Errors related to provider handling.""" pass
[문서]class IBMQBackendError(IBMQError): """Base class for errors raised by the backend modules.""" pass
[문서]class IBMQBackendApiError(IBMQBackendError): """Errors that occur unexpectedly when querying the server.""" pass
[문서]class IBMQBackendApiProtocolError(IBMQBackendApiError): """Errors raised when an unexpected value is received from the server.""" pass
[문서]class IBMQBackendValueError(IBMQBackendError, ValueError): """Value errors raised by the backend modules.""" pass
class IBMQBackendJobLimitError(IBMQBackendError): """Errors raised when job limit is reached.""" pass class IBMQInputValueError(IBMQError): """Error raised due to invalid input value.""" pass class IBMQNotAuthorizedError(IBMQError): """Error raised when a service is invoked from an unauthorized account."""

© Copyright 2020, Qiskit Development Team. 최종 업데이트: 2021/06/04

Built with Sphinx using a theme provided by Read the Docs.