// file : Utility/ExH/System/DescriptiveException.ipp // author : Boris Kolpackov // copyright : Copyright (c) 2002-2003 Boris Kolpackov // license : http://kolpackov.net/license.html #include "Utility/ExH/Converter.hpp" namespace Utility { namespace ExH { namespace System { template inline DescriptiveException:: DescriptiveException (T const& description) throw () { init (converter (description).c_str ()); } } } } //$Id$