summaryrefslogtreecommitdiff
path: root/shared/inotify/doc/man/man3/InotifyException.3
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:17 +0200
commitfd0853d2623dd278b08288331ed42e3be59252fb (patch)
treea7645daeaef8bdbed064faf4eb88e72cee58726c /shared/inotify/doc/man/man3/InotifyException.3
parent2.1 (diff)
downloadFreeFileSync-fd0853d2623dd278b08288331ed42e3be59252fb.tar.gz
FreeFileSync-fd0853d2623dd278b08288331ed42e3be59252fb.tar.bz2
FreeFileSync-fd0853d2623dd278b08288331ed42e3be59252fb.zip
2.2
Diffstat (limited to 'shared/inotify/doc/man/man3/InotifyException.3')
-rw-r--r--shared/inotify/doc/man/man3/InotifyException.3125
1 files changed, 125 insertions, 0 deletions
diff --git a/shared/inotify/doc/man/man3/InotifyException.3 b/shared/inotify/doc/man/man3/InotifyException.3
new file mode 100644
index 00000000..90c5990d
--- /dev/null
+++ b/shared/inotify/doc/man/man3/InotifyException.3
@@ -0,0 +1,125 @@
+.TH "InotifyException" 3 "18 Apr 2007" "Version 0.7.2" "inotify-cxx" \" -*- nroff -*-
+.ad l
+.nh
+.SH NAME
+InotifyException \- Class for inotify exceptions.
+
+.PP
+.SH SYNOPSIS
+.br
+.PP
+\fC#include <inotify-cxx.h>\fP
+.PP
+.SS "Public Member Functions"
+
+.in +1c
+.ti -1c
+.RI "\fBInotifyException\fP (const std::string &rMsg='', int iErr=0, void *pSrc=NULL)"
+.br
+.RI "\fIConstructor. \fP"
+.ti -1c
+.RI "const std::string & \fBGetMessage\fP () const"
+.br
+.RI "\fIReturns the exception message. \fP"
+.ti -1c
+.RI "int \fBGetErrorNumber\fP () const"
+.br
+.RI "\fIReturns the exception error number. \fP"
+.ti -1c
+.RI "void * \fBGetSource\fP () const"
+.br
+.RI "\fIReturns the exception source. \fP"
+.in -1c
+.SS "Protected Attributes"
+
+.in +1c
+.ti -1c
+.RI "std::string \fBm_msg\fP"
+.br
+.RI "\fImessage \fP"
+.ti -1c
+.RI "int \fBm_err\fP"
+.br
+.RI "\fIerror number \fP"
+.ti -1c
+.RI "void * \fBm_pSrc\fP"
+.br
+.RI "\fIsource \fP"
+.in -1c
+.SH "Detailed Description"
+.PP
+Class for inotify exceptions.
+
+This class allows to acquire information about exceptional events. It makes easier to log or display error messages and to identify problematic code locations.
+.PP
+Although this class is basically thread-safe it is not intended to be shared between threads.
+.PP
+.SH "Constructor & Destructor Documentation"
+.PP
+.SS "InotifyException::InotifyException (const std::string & rMsg = \fC''\fP, int iErr = \fC0\fP, void * pSrc = \fCNULL\fP)\fC [inline]\fP"
+.PP
+Constructor.
+.PP
+\fBParameters:\fP
+.RS 4
+\fIrMsg\fP message
+.br
+\fIiErr\fP error number (see errno.h)
+.br
+\fIpSrc\fP source
+.RE
+.PP
+
+.SH "Member Function Documentation"
+.PP
+.SS "const std::string& InotifyException::GetMessage () const\fC [inline]\fP"
+.PP
+Returns the exception message.
+.PP
+\fBReturns:\fP
+.RS 4
+message
+.RE
+.PP
+
+.SS "int InotifyException::GetErrorNumber () const\fC [inline]\fP"
+.PP
+Returns the exception error number.
+.PP
+If not applicable this value is 0 (zero).
+.PP
+\fBReturns:\fP
+.RS 4
+error number (standardized; see errno.h)
+.RE
+.PP
+
+.SS "void* InotifyException::GetSource () const\fC [inline]\fP"
+.PP
+Returns the exception source.
+.PP
+\fBReturns:\fP
+.RS 4
+source
+.RE
+.PP
+
+.SH "Member Data Documentation"
+.PP
+.SS "std::string \fBInotifyException::m_msg\fP\fC [protected]\fP"
+.PP
+message
+.PP
+.SS "int \fBInotifyException::m_err\fP\fC [protected]\fP"
+.PP
+error number
+.PP
+.SS "void* \fBInotifyException::m_pSrc\fP\fC [mutable, protected]\fP"
+.PP
+source
+.PP
+
+
+.SH "Author"
+.PP
+Generated automatically by Doxygen for inotify-cxx from the source code.
bgstack15