summaryrefslogtreecommitdiff
path: root/source4/libcli/util/pyerrors.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/libcli/util/pyerrors.h')
-rw-r--r--source4/libcli/util/pyerrors.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/libcli/util/pyerrors.h b/source4/libcli/util/pyerrors.h
index 66823f4a41..3fd2a7c9fa 100644
--- a/source4/libcli/util/pyerrors.h
+++ b/source4/libcli/util/pyerrors.h
@@ -24,6 +24,11 @@
#define PyErr_FromNTSTATUS(status) Py_BuildValue("(i,s)", NT_STATUS_V(status), discard_const_p(char, get_friendly_nt_error_msg(status)))
+#define PyErr_FromString(str) Py_BuildValue("(s)", discard_const_p(char, str))
+
+#define PyErr_SetStringError(str) \
+ PyErr_SetObject(PyExc_RuntimeError, PyErr_FromString(str))
+
#define PyErr_SetWERROR(err) \
PyErr_SetObject(PyExc_RuntimeError, PyErr_FromWERROR(err))