sushy-tools/sushy_tools/error.py
Ilya Etingof 9e0eaf4322 Add get/set_boot_image to libvirt driver
This change introduces fully-functional Virtual Media emulation.
Libvirt domains can be booted off the ISO image inserted into
the virtual media device.

Story: 2005149
Task: 29858
Change-Id: I8880dd9ae545d963e7bacf9aa78e4c5ea6b769cb
2019-07-02 16:13:05 +02:00

27 lines
896 B
Python

# Copyright 2018 Red Hat, Inc.
# All Rights Reserved.
#
# 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 FishyError(Exception):
"""Create generic sushy-tools exception object"""
class AliasAccessError(FishyError):
"""Node access attempted via an alias, not UUID"""
class NotSupportedError(FishyError):
"""Feature not supported by resource driver"""