diff --git a/compile/persist/FileBasedStore.scala b/compile/persist/FileBasedStore.scala index c58f791db..74d563a7c 100644 --- a/compile/persist/FileBasedStore.scala +++ b/compile/persist/FileBasedStore.scala @@ -19,7 +19,7 @@ object FileBasedStore } def get(): Option[(Analysis, CompileSetup)] = - try { Some(getUncaught()) } catch { case io: IOException => None } + try { Some(getUncaught()) } catch { case _: Exception => None } def getUncaught(): (Analysis, CompileSetup) = IO.gzipFileIn(file)( in => read[(Analysis, CompileSetup)](in) ) }