27 const std::string& reason) :
28 LocalException(prettymethod +
": " + reason +
".")
33 const std::string& reason,
35 LocalException(prettymethod +
": " + reason +
". The path was: " + path.
toString())
42 auto currentReason = getReason();
43 if (not additionalMessage.empty())
45 setReason(currentReason +
". Additional Message: " + additionalMessage);
52 "REACHED THE END OF A NON VOID METHOD. PERHAPS YOU FORGOT TO ADD A VALUE "
53 "TO SOME SWITCH-CASE STATEMEMT?.")
58 const std::string& prettymethod) :
59 AronException(prettymethod,
"This method is not yet implemented!")
64 const std::string& prettymethod,
65 const std::string& reason,
66 const data::dto::GenericDataPtr&
data) :
67 AronException(prettymethod, reason +
". The ice_id of the data was: " +
data->ice_id())
72 const std::string& prettymethod,
73 const std::string& reason,
74 const data::dto::GenericDataPtr&
data,
76 AronException(prettymethod, reason +
". The ice_id of the data was: " +
data->ice_id(), path)
81 const std::string& prettymethod,
82 const std::string& reason,
83 const type::dto::GenericTypePtr& type) :
84 AronException(prettymethod, reason +
". The ice_id of the type was: " + type->ice_id())
89 const std::string& prettymethod,
90 const std::string& reason,
91 const type::dto::GenericTypePtr& type,
93 AronException(prettymethod, reason +
". The ice_id of the type was: " + type->ice_id(), path)
98 const std::string& reason,
99 const std::string&
input) :
105 const std::string& reason,
106 const std::string&
input,
113 const std::string& prettymethod,
114 const std::string& reason,
115 const std::string&
input,
116 const std::string& expectation) :
117 AronException(prettymethod, reason +
". Got: " +
input +
". Expected: " + expectation)
122 const std::string& reason,
123 const std::string&
input,
124 const std::string& expectation,
126 AronException(prettymethod, reason +
". Got: " +
input +
". Expected: " + expectation, path)