Go to the documentation of this file.
47 template <
typename Tobj>
63 throw Failure(
"ValidPtr::operator*() const: "
64 "Attempt to access invalid object. "
65 "Object is on file.");
67 throw Failure(
"ValidPtr::operator*() const: "
68 "Attempt to access invalid object. "
69 "Do not have data structure.");
75 throw Failure(
"ValidPtr::operator->() const: "
76 "Attempt to access invalid pointer."
77 "Object is on file.");
79 throw Failure(
"ValidPtr::operator->() const: "
80 "Attempt to access invalid pointer. "
81 "Do not have data structure.");
109 throw "Swap called for objects not in memory";
111 throw "Swap called for objects without data structure";
112 Tobj * tmpPtr = ptrA.
ptr;