AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
UpdateException Class Reference

#include "DBUpdater.h"

Inheritance diagram for UpdateException:

Public Member Functions

 UpdateException (std::string const &msg)
 
 ~UpdateException () throw ()
 
char const * what () const override throw ()
 

Private Attributes

std::string const _msg
 

Detailed Description

Constructor & Destructor Documentation

◆ UpdateException()

UpdateException::UpdateException ( std::string const &  msg)
inline
40: _msg(msg) { }
std::string const _msg
Definition: DBUpdater.h:46

◆ ~UpdateException()

UpdateException::~UpdateException ( )
throw (
)
inline
41{ }

Member Function Documentation

◆ what()

char const * UpdateException::what ( ) const
throw (
)
inlineoverride
43{ return _msg.c_str(); }

Member Data Documentation

◆ _msg

std::string const UpdateException::_msg
private