rics.translation.dio.exceptions#

Data structure I exceptions.

Exceptions

DataStructureIOError

Base class for IO exceptions.

NotInplaceTranslatableError(arg)

Exception indicating that a type cannot be translated in-place.

UntranslatableTypeError(t)

Exception indicating that a type cannot be translated.

exception DataStructureIOError[source]#

Bases: RuntimeError

Base class for IO exceptions.

exception UntranslatableTypeError(t: Type[Any])[source]#

Bases: DataStructureIOError

Exception indicating that a type cannot be translated.

Parameters:

t – A type.

exception NotInplaceTranslatableError(arg: Any)[source]#

Bases: DataStructureIOError

Exception indicating that a type cannot be translated in-place.

Parameters:

arg – Something that can’t be translated inplace.