Changes in src/Parameters/Parameter_impl.hpp [b56114:0d4168]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Parameter_impl.hpp
rb56114 r0d4168 186 186 } 187 187 188 189 /** Catch call to value.getUnvalidated() to add exception information.190 *191 * @return parameter value as string192 */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 }203 188 204 189 /** Catch call to value.get() to add exception information.
Note:
See TracChangeset
for help on using the changeset viewer.