File: exceptions.py

package info (click to toggle)
virtnbdbackup 2.44-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 672 kB
  • sloc: python: 4,434; makefile: 9
file content (15 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Exceptions
"""


class QemuHelperError(Exception):
    """Errors during qemu helper"""


class NbdServerProcessError(QemuHelperError):
    """Unable to start nbd server for offline backup"""


class ProcessError(QemuHelperError):
    """Unable to start process"""