How to use the podman.libs.errors.VarlinkErrorProxy function in podman

To help you get started, we’ve selected a few podman examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github containers / python-podman / podman / libs / errors.py View on Github external
super().__init__(message.as_dict(), namespaced)
        self._message = message
        self.__module__ = 'libpod'

    def __getattr__(self, method):
        """Return attribute from proxied Exception."""
        if hasattr(self._message, method):
            return getattr(self._message, method)

        try:
            return self._message.parameters()[method]
        except KeyError:
            raise AttributeError('No such attribute: {}'.format(method))


class ContainerNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested container."""


class ImageNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
github containers / python-podman / podman / libs / errors.py View on Github external
"""Raised when Client cannot find requested container."""


class ImageNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
    """Raised when an error occurs during the execution.

    See error() to see actual error text.
    """


class PodmanError(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""
github containers / python-podman / podman / libs / errors.py View on Github external
try:
            return self._message.parameters()[method]
        except KeyError:
            raise AttributeError('No such attribute: {}'.format(method))


class ContainerNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested container."""


class ImageNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
github containers / python-podman / podman / libs / errors.py View on Github external
"""Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
    """Raised when an error occurs during the execution.

    See error() to see actual error text.
    """


class PodmanError(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class InvalidState(VarlinkErrorProxy):
    """Raised when container is in invalid state for operation."""


ERROR_MAP = {
    'io.podman.ContainerNotFound': ContainerNotFound,
github containers / python-podman / podman / libs / errors.py View on Github external
class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
    """Raised when an error occurs during the execution.

    See error() to see actual error text.
    """


class PodmanError(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class InvalidState(VarlinkErrorProxy):
    """Raised when container is in invalid state for operation."""


ERROR_MAP = {
    'io.podman.ContainerNotFound': ContainerNotFound,
    'io.podman.ErrorOccurred': ErrorOccurred,
    'io.podman.ImageNotFound': ImageNotFound,
    'io.podman.InvalidState': InvalidState,
    'io.podman.NoContainerRunning': NoContainerRunning,
    'io.podman.NoContainersInPod': NoContainersInPod,
    'io.podman.PodContainerError': PodContainerError,
    'io.podman.PodNotFound': PodNotFound,
    'io.podman.RuntimeError': PodmanError,
}
github containers / python-podman / podman / libs / errors.py View on Github external
"""Raised when Client cannot find requested image."""


class PodNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
    """Raised when an error occurs during the execution.

    See error() to see actual error text.
    """


class PodmanError(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class InvalidState(VarlinkErrorProxy):
    """Raised when container is in invalid state for operation."""
github containers / python-podman / podman / libs / errors.py View on Github external
class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
    """Raised when an error occurs during the execution.

    See error() to see actual error text.
    """


class PodmanError(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class InvalidState(VarlinkErrorProxy):
    """Raised when container is in invalid state for operation."""


ERROR_MAP = {
    'io.podman.ContainerNotFound': ContainerNotFound,
    'io.podman.ErrorOccurred': ErrorOccurred,
    'io.podman.ImageNotFound': ImageNotFound,
    'io.podman.InvalidState': InvalidState,
    'io.podman.NoContainerRunning': NoContainerRunning,
    'io.podman.NoContainersInPod': NoContainersInPod,
    'io.podman.PodContainerError': PodContainerError,
    'io.podman.PodNotFound': PodNotFound,
github containers / python-podman / podman / libs / errors.py View on Github external
raise AttributeError('No such attribute: {}'.format(method))


class ContainerNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested container."""


class ImageNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):
    """Raised when Client fails to connect to runtime."""


class ErrorOccurred(VarlinkErrorProxy):
    """Raised when an error occurs during the execution.

    See error() to see actual error text.
    """
github containers / python-podman / podman / libs / errors.py View on Github external
def __getattr__(self, method):
        """Return attribute from proxied Exception."""
        if hasattr(self._message, method):
            return getattr(self._message, method)

        try:
            return self._message.parameters()[method]
        except KeyError:
            raise AttributeError('No such attribute: {}'.format(method))


class ContainerNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested container."""


class ImageNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodNotFound(VarlinkErrorProxy):
    """Raised when Client cannot find requested image."""


class PodContainerError(VarlinkErrorProxy):
    """Raised when a container fails requested pod operation."""


class NoContainerRunning(VarlinkErrorProxy):
    """Raised when no container is running in pod."""


class NoContainersInPod(VarlinkErrorProxy):