vtk-m/vtkm/cont/ErrorBadAllocation.h

39 lines
996 B
C
Raw Normal View History

2015-09-22 14:21:07 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2015-09-22 14:21:07 +00:00
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//============================================================================
#ifndef vtk_m_cont_ErrorBadAllocation_h
#define vtk_m_cont_ErrorBadAllocation_h
2015-09-22 14:21:07 +00:00
#include <vtkm/cont/Error.h>
2015-09-22 14:21:07 +00:00
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace cont
{
2015-09-22 14:21:07 +00:00
VTKM_SILENCE_WEAK_VTABLE_WARNING_START
2015-09-22 14:21:07 +00:00
/// This class is thrown when VTK-m attempts to manipulate memory that it should
/// not.
///
class VTKM_ALWAYS_EXPORT ErrorBadAllocation : public Error
2015-09-22 14:21:07 +00:00
{
public:
2017-05-18 14:29:41 +00:00
ErrorBadAllocation(const std::string& message)
: Error(message)
{
}
2015-09-22 14:21:07 +00:00
};
VTKM_SILENCE_WEAK_VTABLE_WARNING_END
2015-09-22 14:21:07 +00:00
}
} // namespace vtkm::cont
#endif //vtk_m_cont_ErrorBadAllocation_h