Files
core/ASCOfficeXlsFile/ASCWorksheetConverter/source/Exception/WrongAPIUsage.cpp

18 lines
301 B
C++

#include "stdafx.h"
#include "WrongAPIUsage.h"
namespace EXCEPT
{;
namespace LE
{;
WrongAPIUsage::WrongAPIUsage(const std::string& message, const std::string& function_name)
: LogicalException(message + " Function: " + function_name)
{
}
} // namespace LE
} // namespace EXCEPT