Public Member Functions | Public Attributes | List of all members
NoParameterFound Struct Reference

#include <Exceptions.h>

Inheritance diagram for NoParameterFound:

Public Member Functions

 NoParameterFound (const std::string &name)
 
virtual ~NoParameterFound () throw ()
 
virtual const char * what () const throw ()
 

Public Attributes

std::string m_error
 

Detailed Description

Definition at line 8 of file Exceptions.h.

Constructor & Destructor Documentation

NoParameterFound::NoParameterFound ( const std::string name)
inline

Definition at line 10 of file Exceptions.h.

11  {
12  m_error=std::string("Parameter not defined: ")+name;
13  }
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
std::string m_error
Definition: Exceptions.h:21
virtual NoParameterFound::~NoParameterFound ( )
throw (
)
inlinevirtual

Definition at line 15 of file Exceptions.h.

15 {}

Member Function Documentation

virtual const char* NoParameterFound::what ( void  ) const
throw (
)
inlinevirtual

Definition at line 17 of file Exceptions.h.

17  {
18  return m_error.c_str();
19  }
std::string m_error
Definition: Exceptions.h:21

Member Data Documentation

std::string NoParameterFound::m_error

Definition at line 21 of file Exceptions.h.


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