Newer
Older
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
66
67
68
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
class UnsatisfiedFilterException(Exception):
def __init__(self, filter_fields):
msg = 'No Driver satisfies FilterFields({:s})'
super().__init__(msg.format(str(filter_fields)))
class UnsupportedDriverClassException(Exception):
def __init__(self, driver_class_name):
msg = 'Class({:s}) is not a subclass of _Driver'
super().__init__(msg.format(str(driver_class_name)))
class UnsupportedFilterFieldException(Exception):
def __init__(self, unsupported_filter_fields, driver_class_name=None):
if driver_class_name:
msg = 'FilterFields({:s}) specified by Driver({:s}) are not supported'
msg = msg.format(str(unsupported_filter_fields), str(driver_class_name))
else:
msg = 'FilterFields({:s}) specified in Filter are not supported'
msg = msg.format(str(unsupported_filter_fields))
super().__init__(msg)
class UnsupportedFilterFieldValueException(Exception):
def __init__(self, filter_field_name, filter_field_value, allowed_filter_field_values, driver_class_name=None):
if driver_class_name:
msg = 'FilterField({:s}={:s}) specified by Driver({:s}) is not supported. Allowed values are {:s}'
msg = msg.format(
str(filter_field_name), str(filter_field_value), str(driver_class_name),
str(allowed_filter_field_values))
else:
msg = 'FilterField({:s}={:s}) specified in Filter is not supported. Allowed values are {:s}'
msg = msg.format(str(filter_field_name), str(filter_field_value), str(allowed_filter_field_values))
super().__init__(msg)
class DriverInstanceCacheTerminatedException(Exception):
def __init__(self):
msg = 'DriverInstanceCache is terminated. No new instances can be processed.'
super().__init__(msg)
class UnsupportedResourceKeyException(Exception):
def __init__(self, resource_key):
msg = 'ResourceKey({:s}) not supported'
msg = msg.format(str(resource_key))
super().__init__(msg)
class ConfigFieldNotFoundException(Exception):
def __init__(self, config_field_name):
msg = 'ConfigField({:s}) not specified in resource'
msg = msg.format(str(config_field_name))
super().__init__(msg)
class ConfigFieldsNotSupportedException(Exception):
def __init__(self, config_fields):
msg = 'ConfigFields({:s}) not supported in resource'
msg = msg.format(str(config_fields))
super().__init__(msg)