X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2Ffutures%2FFutureException.h;h=8e10746ae19d00c16d5e8f8763211b4ecaa4b821;hb=9dbb52ab5c9532002435e1b249c2313bb36570de;hp=b7effcd313d4e02d0f4e56cbd177a0e4e69449e3;hpb=56a2009b5016f207906f0fa80831b82769fd1f6a;p=folly.git diff --git a/folly/futures/FutureException.h b/folly/futures/FutureException.h index b7effcd3..8e10746a 100644 --- a/folly/futures/FutureException.h +++ b/folly/futures/FutureException.h @@ -1,5 +1,5 @@ /* - * Copyright 2015 Facebook, Inc. + * Copyright 2016 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -76,12 +76,6 @@ class FutureAlreadyRetrieved : public FutureException { FutureException("Future already retrieved") { } }; -class UsingUninitializedTry : public FutureException { - public: - explicit UsingUninitializedTry() : - FutureException("Using unitialized try") { } -}; - class FutureCancellation : public FutureException { public: FutureCancellation() : FutureException("Future was cancelled") {}