Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parameters/Parameter_impl.hpp

    r0d4168 rb56114  
    186186}
    187187
     188
     189/** Catch call to value.getUnvalidated() to add exception information.
     190 *
     191 * @return parameter value as string
     192 */
     193template<typename T>
     194inline 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}
    188203
    189204/** Catch call to value.get() to add exception information.
Note: See TracChangeset for help on using the changeset viewer.