2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
7 #include "TargetBuffer_t.h"
10 template <typename T_BaseType, typename T_BufferType, typename T_VectorType >
11 void TTN::BufferBase_t<T_BaseType,T_BufferType,T_VectorType>::throwRangeError(typename std::vector<T_BaseType>::size_type idx) const
13 std::stringstream msg;
14 msg << "TTN::Buffer_t index out of range ( " << idx << " !< " << m_maxIndex << " )";
15 throw std::runtime_error(msg.str());