* Run build tools after parsing build files
[reactos.git] / reactos / tools / rbuild / exception.h
index 5574d63..2adc438 100644 (file)
@@ -29,6 +29,13 @@ public:
 };\r
 \r
 \r
+class OutOfMemoryException : public Exception\r
+{\r
+public:\r
+       OutOfMemoryException ();\r
+};\r
+\r
+\r
 class FileNotFoundException : public Exception\r
 {\r
 public:\r
@@ -105,4 +112,14 @@ public:
                                     int moduletype );\r
 };\r
 \r
+\r
+class InvocationFailedException : public Exception\r
+{\r
+public:\r
+       InvocationFailedException ( const std::string& command,\r
+                                   int exitcode );\r
+       std::string Command;\r
+       int ExitCode;\r
+};\r
+\r
 #endif /* __EXCEPTION_H */\r