mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
12 lines
239 B
Python
12 lines
239 B
Python
|
|
|
|
class VolumeError(Exception):
|
|
"""Raised when an error occurs while interacting with the volume
|
|
"""
|
|
pass
|
|
|
|
|
|
class PartitionError(Exception):
|
|
"""Raised when an error occurs while interacting with the partitions on the volume
|
|
"""
|
|
pass
|