16 lines
310 B
Crystal
16 lines
310 B
Crystal
|
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
#
|
||
|
# SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net>
|
||
|
# Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net>
|
||
|
|
||
|
require "yaml"
|
||
|
|
||
|
module GX::Models
|
||
|
class InvalidFilesystemError < Exception
|
||
|
end
|
||
|
|
||
|
class InvalidMountpointError < Exception
|
||
|
end
|
||
|
end
|