MySQL++  3.3.0
Public Member Functions | List of all members
mysqlpp::ConnectionFailed Class Reference

Exception thrown when there is a problem related to the database server connection. More...

#include <exceptions.h>

Inheritance diagram for mysqlpp::ConnectionFailed:
Inheritance graph
[legend]
Collaboration diagram for mysqlpp::ConnectionFailed:
Collaboration graph
[legend]

Public Member Functions

 ConnectionFailed (const char *w="", int e=0)
 Create exception object. More...
 
int errnum () const
 Return the error number corresponding to the error message returned by what(), if any. More...
 
- Public Member Functions inherited from mysqlpp::Exception
 Exception (const Exception &e) MAY_THROW()
 Create exception object as copy of another.
 
Exceptionoperator= (const Exception &rhs) throw ()
 Assign another exception object's contents to this one.
 
 ~Exception () throw ()
 Destroy exception object.
 
virtual const char * what () const throw ()
 Returns explanation of why exception was thrown.
 

Additional Inherited Members

- Protected Member Functions inherited from mysqlpp::Exception
 Exception (const char *w="") throw ()
 Create exception object.
 
 Exception (const std::string &w) throw ()
 Create exception object.
 
- Protected Attributes inherited from mysqlpp::Exception
std::string what_
 explanation of why exception was thrown
 

Detailed Description

Exception thrown when there is a problem related to the database server connection.

This is thrown not just on making the connection, but also on shutdown and when calling certain of Connection's methods that require a connection when there isn't one.

Constructor & Destructor Documentation

◆ ConnectionFailed()

mysqlpp::ConnectionFailed::ConnectionFailed ( const char *  w = "",
int  e = 0 
)
inlineexplicit

Create exception object.

Parameters
wexplanation for why the exception was thrown
ethe error number from the underlying database API

Member Function Documentation

◆ errnum()

int mysqlpp::ConnectionFailed::errnum ( ) const
inline

Return the error number corresponding to the error message returned by what(), if any.

If the error number is 0, it means that the error message doesn't come from the underlying database API, but rather from MySQL++ itself. This happens when an error condition is detected up at this higher level instead of letting the underlying database API do it.


The documentation for this class was generated from the following file: