Source code for networkapi.api_network.exceptions

# -*- coding: utf-8 -*-
from rest_framework import status
from rest_framework.exceptions import APIException


[docs]class CannotRemoveDHCPRelayFromActiveNetwork(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Cannot remove DHCPRelay IP from an active network.'
[docs]class DHCPRelayNotFoundError(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'No DHCPRelayIPv4 found.' def __init__(self, version='', id=None): self.detail = u'There is no DHCPRelay%s with id = %s.' % (version, id)
[docs]class DHCPRelayAlreadyExistsError(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'DHCPRelayIP with giver parameters already found.' def __init__(self, ip_id, network_id): self.detail = u'DHCPRelayIP with giver parameters already found ' \ '(%s, %s).' % (ip_id, network_id)
[docs]class EquipmentIDNotInCorrectEnvException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Equipments are not part of network environment.'
[docs]class IncorrectNetworkRouterRegistryException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Equipment IPs not correctly registered. In case of ' \ 'multiple gateways, they should have a registered IP other than ' \ 'the gateway.'
[docs]class IncorrectRedundantGatewayRegistryException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Equipment IPs not correctly registered. Equipments '\ 'should have first IP of network allocated for them as gateways.'
[docs]class InvalidInputException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Invalid input.'
[docs]class InvalidNetworkIDException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Invalid Network ID.'
[docs]class NetworkAlreadyActive(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'Already Active Network. Nothing to do.'
[docs]class NetworkTemplateException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'No network configuration templates found for equipments.'
[docs]class NoEnvironmentRoutersFoundException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'No environment routers found for network configuration.'
[docs]class NetworkConflictException(APIException): status_code = status.HTTP_400_BAD_REQUEST default_detail = 'One of the equipment associated with the environment ' \ 'of this Vlan is also associated with other environment that has a ' \ 'network with the same track, add filters in environments if ' \ 'necessary.' def __init__(self, detail=default_detail): self.detail = detail