Defines | |
#define | ZYPP_THROW(EXCPT) _ZYPP_THROW( EXCPT, ZYPP_EX_CODELOCATION ) |
Drops a logline and throws the Exception. | |
#define | ZYPP_CAUGHT(EXCPT) _ZYPP_CAUGHT( EXCPT, ZYPP_EX_CODELOCATION ) |
Drops a logline telling the Exception was caught (in order to handle it). | |
#define | ZYPP_RETHROW(EXCPT) _ZYPP_RETHROW( EXCPT, ZYPP_EX_CODELOCATION ) |
Drops a logline and rethrows, updating the CodeLocation. | |
#define | ZYPP_THROW_MSG(EXCPTTYPE, MSG) ZYPP_THROW( EXCPTTYPE( MSG ) ) |
Throw Exception built from a message string. | |
#define | ZYPP_THROW_ERRNO(EXCPTTYPE) ZYPP_THROW( EXCPTTYPE( ::zypp::Exception::strErrno(errno) ) ) |
Throw Exception built from errno. | |
#define | ZYPP_THROW_ERRNO1(EXCPTTYPE, ERRNO) ZYPP_THROW( EXCPTTYPE( ::zypp::Exception::strErrno(ERRNO) ) ) |
Throw Exception built from errno provided as argument. | |
#define | ZYPP_THROW_ERRNO_MSG(EXCPTTYPE, MSG) ZYPP_THROW( EXCPTTYPE( ::zypp::Exception::strErrno(errno,MSG) ) ) |
Throw Exception built from errno and a message string. | |
#define | ZYPP_THROW_ERRNO_MSG1(EXCPTTYPE, ERRNO, MSG) ZYPP_THROW( EXCPTTYPE( ::zypp::Exception::strErrno(ERRNO,MSG) ) ) |
Throw Exception built from errno provided as argument and a message string. |
|
|
|
|
Throw Exception built from a message string.
Definition at line 241 of file Exception.h. |
|
Throw Exception built from errno.
Definition at line 245 of file Exception.h. |
|
Throw Exception built from errno provided as argument.
Definition at line 249 of file Exception.h. |
|
Throw Exception built from errno and a message string.
Definition at line 253 of file Exception.h. Referenced by zypp::base::Fd::Fd(), zypp::thread::Mutex::lock(), zypp::thread::Mutex::Mutex(), and zypp::thread::Mutex::unlock(). |
|
Throw Exception built from errno provided as argument and a message string.
Definition at line 257 of file Exception.h. |