#include <sound_error.hpp>
Inherits std::exception.
Public Member Functions | |
SoundError (const std::string &message) throw () | |
virtual | ~SoundError () throw () |
const char * | what () const throw () |
Private Attributes | |
std::string | message |
Definition at line 22 of file sound_error.hpp.
SoundError::SoundError | ( | const std::string & | message | ) | throw () |
SoundError::~SoundError | ( | ) | throw () [virtual] |
const char * SoundError::what | ( | ) | const throw () |
Definition at line 28 of file sound_error.cpp.
References message.
00029 { 00030 return message.c_str(); 00031 }
std::string SoundError::message [private] |