[WS2_32]
[reactos.git] / rostests / rosautotest / CTestException.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 during test execution that can be skipped over
5 * COPYRIGHT: Copyright 2015 Thomas Faber <thomas.faber@reactos.org>
6 */
7
8 class CTestException : public CSimpleException
9 {
10 public:
11 CTestException(const string& Message) : CSimpleException(Message) { }
12 };