My Project
OSErrorClass.cpp
Go to the documentation of this file.
1 /* $Id$ */
16 #include "OSErrorClass.h"
17 
18 
19 
20 ErrorClass::ErrorClass(std::string errormsg_)
21 {
22  errormsg = errormsg_;
23 }
24 
ErrorClass(std::string errormsg_)
the class constructor
std::string errormsg
errormsg is the error that is causing the exception to be thrown
Definition: OSErrorClass.h:42