
| Current Path : /proc/thread-self/root/usr/local/lib/python3.8/dist-packages/azure/common/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/local/lib/python3.8/dist-packages/azure/common/__init__.py |
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
from ._version import VERSION as _VERSION
__author__ = 'Microsoft Corp. <azpysdkhelp@microsoft.com>'
__version__ = _VERSION
class AzureException(Exception):
pass
class AzureHttpError(AzureException):
def __init__(self, message, status_code):
super(AzureHttpError, self).__init__(message)
self.status_code = status_code
def __new__(cls, message, status_code, *args, **kwargs):
if cls is AzureHttpError:
if status_code == 404:
cls = AzureMissingResourceHttpError
elif status_code == 409:
cls = AzureConflictHttpError
return AzureException.__new__(cls, message, status_code, *args, **kwargs)
class AzureConflictHttpError(AzureHttpError):
def __init__(self, message, status_code):
super(AzureConflictHttpError, self).__init__(message, status_code)
class AzureMissingResourceHttpError(AzureHttpError):
def __init__(self, message, status_code):
super(AzureMissingResourceHttpError, self).__init__(message, status_code)