Changes in src/Parameters/Parameter_impl.hpp [0d4168:b56114]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Parameter_impl.hpp
r0d4168 rb56114 186 186 } 187 187 188 189 /** Catch call to value.getUnvalidated() to add exception information. 190 * 191 * @return parameter value as string 192 */ 193 template<typename T> 194 inline const T & Parameter<T>::getUnvalidated() const throw(ParameterValueException) 195 { 196 try { 197 return value.getUnvalidated(); 198 } catch(ParameterException &e) { 199 e << ParameterName(ParameterInterface::getName()); 200 throw; 201 } 202 } 188 203 189 204 /** Catch call to value.get() to add exception information.
Note:
See TracChangeset
for help on using the changeset viewer.