id_translation.dio.exceptions#

Data structure IO exceptions.

Exceptions

DataStructureIOError(msg)

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(msg)[source]#

Bases: TypeError

Base class for IO exceptions.

exception NotInplaceTranslatableError(arg)[source]#

Bases: DataStructureIOError

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

Parameters:

arg – Something that can’t be translated inplace.

exception UntranslatableTypeError(t)[source]#

Bases: DataStructureIOError

Exception indicating that a type cannot be translated.

Parameters:

t – A type.