Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parameters/Parameter_impl.hpp

    rb56114 r0d4168  
    186186}
    187187
    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 }
    203188
    204189/** Catch call to value.get() to add exception information.
Note: See TracChangeset for help on using the changeset viewer.