Exceptions¶ erpc.exceptions ¶ erpc.py exception hierarchy. ERPCError ¶ Bases: Exception Base exception for erpc.py. Source code in erpc/exceptions.py 4 5class ERPCError(Exception): """Base exception for erpc.py.""" ERPCNotFound ¶ Bases: ERPCError eRPC binary not found on PATH or at specified location. Source code in erpc/exceptions.py 8 9class ERPCNotFound(ERPCError): """eRPC binary not found on PATH or at specified location.""" ERPCNotRunning ¶ Bases: ERPCError Operation requires a running eRPC process. Source code in erpc/exceptions.py 12 13class ERPCNotRunning(ERPCError): """Operation requires a running eRPC process.""" ERPCStartupError ¶ Bases: ERPCError eRPC process failed to start. Source code in erpc/exceptions.py 16 17class ERPCStartupError(ERPCError): """eRPC process failed to start.""" ERPCHealthCheckError ¶ Bases: ERPCError eRPC health check failed or timed out. Source code in erpc/exceptions.py 20 21class ERPCHealthCheckError(ERPCError): """eRPC health check failed or timed out.""" ERPCConfigError ¶ Bases: ERPCError Invalid or malformed eRPC configuration. Source code in erpc/exceptions.py 24 25class ERPCConfigError(ERPCError): """Invalid or malformed eRPC configuration."""