Exception Classes Of Python Pickle Module

Exceptions provided by the Python Pickle Module:

Exception Name

Description

pickle.PickleError

The base class for the exceptions defined under the pickle module. PickleError is derived from the class Exception

pickle.PicklingError

This exception pickle.PicklingError is used when the process of pickling one or more python objects is not able to proceed.

pickle.UnpicklingError

This is exception pickle.UnpicklingError is raised when the process of converting a pickled byte stream into python object hierarchie(s) fails.

 

Exception Hierarchy:

Exception classes of Pickle Module - Class hierarchy


Copyright 2023 © pythontic.com