#include <OSGSocketException.h>
Inheritance diagram for osg::SocketHostError:

Public Member Functions | |
Constructors | |
| * | SocketHostError (const char *function) |
Info | |
| *virtual const Char8 * | what (void) const OSG_THROW_NOTHING() |
Protected Types | |
| typedef OSG_STDEXCEPTION_NAMESPACE::exception | Inherited |
Protected Attributes | |
Class Specific | |
| *std::string | _what |
Definition at line 83 of file OSGSocketException.h.
|
|
Definition at line 101 of file OSGException.h. |
|
|
Constructor Definition at line 84 of file OSGSocketException.cpp. References osg::Exception::_what, osg::Socket::getHostError(), and osg::Socket::getHostErrorStr(). 00084 :SocketException() 00085 { 00086 char estr[6]; 00087 00088 sprintf(estr,"%5d",Socket::getHostError()); 00089 _what=_what + function + " " + estr + " " + Socket::getHostErrorStr(); 00090 }
|
|
|
Definition at line 73 of file OSGException.cpp. References osg::Exception::_what. Referenced by osg::operator<<(). 00074 { 00075 return _what.c_str(); 00076 }
|
|
1.4.3