libgit2

git_error_set

Version:

Set the error message string for this thread, using printf-style formatting.

This function is public so that custom ODB backends and the like can relay an error message through libgit2. Most regular users of libgit2 will never need to call this function -- actually, calling it in most circumstances (for example, calling from within a callback function) will just end up having the value overwritten by libgit2 internals.

This error message is stored in thread-local storage and only applies to the particular thread that this libgit2 call is made from.

Signature

void git_error_set(int error_class, const char *fmt);

Parameters

int
In
error_class

One of the git_error_t enum above describing the general subsystem that is responsible for the error.

const char *
In
fmt

The printf-style format string; subsequent arguments must be the arguments for the format string.

Versions