[RXCE]
[reactos.git] / rostests / rosautotest / CSimpleException.h
1 /*
2 * PROJECT: ReactOS Automatic Testing Utility
3 * LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
4 * PURPOSE: Simple exception containing just a message
5 * COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org>
6 */
7
8 class CSimpleException
9 {
10 private:
11 string m_Message;
12
13 public:
14 CSimpleException(const string& Message);
15
16 const string& GetMessage() const { return m_Message; }
17 };