Files
o3de/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestImpactException.cpp
T
Chris Galvan b9e06e70d9 Fixed copyright header issues per new validator
Signed-off-by: Chris Galvan <chgalvan@amazon.com>
2021-07-02 15:34:04 -05:00

29 lines
585 B
C++

/*
* /*
* Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
*/
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include <TestImpactFramework/TestImpactException.h>
namespace TestImpact
{
Exception::Exception(const AZStd::string& msg)
: m_msg(msg)
{
}
Exception::Exception(const char* msg)
: m_msg(msg)
{
}
const char* Exception::what() const noexcept
{
return m_msg.c_str();
}
} // namespace TestImpact