Ejemplo n.º 1
0
UMSVishnuException::UMSVishnuException(const UMSVishnuException& e):UserException(e){
  mtype = VishnuException::UMS;
  initMsg();
}
Ejemplo n.º 2
0
UMSVishnuException::UMSVishnuException():UserException(){
  mtype = VishnuException::UMS;
  initMsg();
}
Ejemplo n.º 3
0
UserException::UserException():VishnuException(){ initMsg();}
Ejemplo n.º 4
0
UserException::UserException(const UserException& e):VishnuException(e){ initMsg();}
Ejemplo n.º 5
0
UserException::UserException(int msg, std::string msgComp):VishnuException(msg,msgComp){ initMsg();}