Skip to content

Exceptions

This page documents all exceptions raised by the OpenDAL.

Bases: Exception

OpenDAL Base Exception.

Source code in python/opendal/exceptions.pyi
32
33
class Error(builtins.Exception):
    r"""OpenDAL Base Exception."""

Bases: Exception

Already exists.

Source code in python/opendal/exceptions.pyi
23
24
class AlreadyExists(builtins.Exception):
    r"""Already exists."""

Bases: Exception

Condition not match.

Source code in python/opendal/exceptions.pyi
26
27
class ConditionNotMatch(builtins.Exception):
    r"""Condition not match."""

Bases: Exception

Config is invalid.

Source code in python/opendal/exceptions.pyi
29
30
class ConfigInvalid(builtins.Exception):
    r"""Config is invalid."""

Bases: Exception

Is a directory.

Source code in python/opendal/exceptions.pyi
35
36
class IsADirectory(builtins.Exception):
    r"""Is a directory."""

Bases: Exception

Is same file.

Source code in python/opendal/exceptions.pyi
38
39
class IsSameFile(builtins.Exception):
    r"""Is same file."""

Bases: Exception

Not a directory.

Source code in python/opendal/exceptions.pyi
41
42
class NotADirectory(builtins.Exception):
    r"""Not a directory."""

Bases: Exception

Not found.

Source code in python/opendal/exceptions.pyi
44
45
class NotFound(builtins.Exception):
    r"""Not found."""

Bases: Exception

Permission denied.

Source code in python/opendal/exceptions.pyi
47
48
class PermissionDenied(builtins.Exception):
    r"""Permission denied."""

Bases: Exception

Unexpected errors.

Source code in python/opendal/exceptions.pyi
50
51
class Unexpected(builtins.Exception):
    r"""Unexpected errors."""

Bases: Exception

Unsupported operation.

Source code in python/opendal/exceptions.pyi
53
54
class Unsupported(builtins.Exception):
    r"""Unsupported operation."""