Fix GlogFormatterTest on Windows
[folly.git] / folly / futures / FutureException.h
index 57635424d84f9997ebbce5c6d7656f7b0bfe2e3c..3e30672db3605b68ae03aa3dbbc119ba3f181167 100644 (file)
@@ -69,4 +69,7 @@ class PredicateDoesNotObtain : public FutureException {
   PredicateDoesNotObtain() : FutureException("Predicate does not obtain") {}
 };
 
+struct NoFutureInSplitter : FutureException {
+  NoFutureInSplitter() : FutureException("No Future in this FutureSplitter") {}
+};
 }