~vbursian/research-assistant/intervers

« back to all changes in this revision

Viewing changes to RANet/NetExceptions.cpp

  • Committer: Viktor Bursian at blin-ubuntu
  • Date: 2018-03-07 13:27:22 UTC
  • mto: (9.4.10 intervers)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: vbursian@gmail.com-20180307132722-79927586fb2ay293
Exception class tree reorganized.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
//--------------------------------------------------------------------- xNet ---
14
14
 
15
 
xNet::xNet (rcsString  title   ,rcsString  text)
16
 
    :sMessage(title,text)
17
 
{
18
 
  RANet::Log.Put(sLog::Debug,Title,Text);
19
 
}
20
 
 
21
 
 
22
 
xNet::xNet (rcsString  text)
23
 
    :sMessage("xNet",text)
24
 
{
25
 
  RANet::Log.Put(sLog::Debug,Title,Text);
26
 
}
27
 
 
28
 
 
29
 
xNet::xNet ()
30
 
    :sMessage("xNet","unknown")
31
 
{
32
 
  //!@todo{Net} Get rid of this constructor
33
 
  RANet::Log.Put(sLog::Critical,Title,Text);
34
 
}
 
15
//xNet::xNet (rcsString  title   ,rcsString  text)
 
16
//    :sMessage(title,text)
 
17
//{
 
18
//  RANet::Log.Put(sLog::Debug,Title,Text);
 
19
//}
 
20
 
 
21
 
 
22
//xNet::xNet (rcsString  text)
 
23
//    :sMessage("xNet",text)
 
24
//{
 
25
//  RANet::Log.Put(sLog::Debug,Title,Text);
 
26
//}
 
27
 
 
28
 
 
29
//xNet::xNet ()
 
30
//    :sMessage("xNet","unknown")
 
31
//{
 
32
//  //!@todo{Net} Get rid of this constructor
 
33
//  RANet::Log.Put(sLog::Critical,Title,Text);
 
34
//}
35
35
 
36
36
//------------------------------------------------------------- xGetNullNode ---
37
37
 
38
38
xGetNullNode::xGetNullNode (sNodePtr)
 
39
    :xNet("")
39
40
{
40
41
}
41
42
 
42
43
//------------------------------------------------------------ xAscribeModel ---
43
44
 
44
45
xAscribeModel::xAscribeModel (sNodePtr,sNodePtr)
 
46
    :xNet("")
45
47
{
46
48
}
47
49