]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/ceph_volume/exceptions.py
update sources to v12.1.3
[ceph.git] / ceph / src / ceph-volume / ceph_volume / exceptions.py
1 import os
2
3
4 class ConfigurationError(Exception):
5
6 def __init__(self, cluster_name='ceph', path='/etc/ceph', abspath=None):
7 self.cluster_name = cluster_name
8 self.path = path
9 self.abspath = abspath or "%s.conf" % os.path.join(self.path, self.cluster_name)
10
11 def __str__(self):
12 return 'Unable to load expected Ceph config at: %s' % self.abspath
13
14
15 class ConfigurationSectionError(Exception):
16
17 def __init__(self, section):
18 self.section = section
19
20 def __str__(self):
21 return 'Unable to find expected configuration section: "%s"' % self.section
22
23
24 class ConfigurationKeyError(Exception):
25
26 def __init__(self, section, key):
27 self.section = section
28 self.key = key
29
30 def __str__(self):
31 return 'Unable to find expected configuration key: "%s" from section "%s"' % (
32 self.key,
33 self.section
34 )
35
36
37 class SuffixParsingError(Exception):
38
39 def __init__(self, suffix, part=None):
40 self.suffix = suffix
41 self.part = part
42
43 def __str__(self):
44 return 'Unable to parse the %s from systemd suffix: %s' % (self.part, self.suffix)
45
46
47 class SuperUserError(Exception):
48
49 def __str__(self):
50 return 'This command needs to be executed with sudo or as root'
51
52
53 class MultipleLVsError(Exception):
54
55 def __init__(self, lv_name, lv_path):
56 self.lv_name = lv_name
57 self.lv_path = lv_path
58
59 def __str__(self):
60 msg = "Got more than 1 result looking for %s with path: %s" % (self.lv_name, self.lv_path)
61 return msg
62
63
64 class MultipleVGsError(Exception):
65
66 def __init__(self, vg_name):
67 self.vg_name = vg_name
68
69 def __str__(self):
70 msg = "Got more than 1 result looking for volume group: %s" % self.vg_name
71 return msg