Use custom exception for replay creation failures

This commit is contained in:
baldurk
2016-08-19 17:26:18 +02:00
parent 42f57990d9
commit 8a5d300e78
6 changed files with 34 additions and 22 deletions
+2 -2
View File
@@ -959,7 +959,7 @@ namespace renderdocui.Windows
// if we got this far without an exception, the server is running
host.ServerRunning = true;
}
catch (ApplicationException)
catch (ReplayCreateException)
{
}
@@ -978,7 +978,7 @@ namespace renderdocui.Windows
// if we got this far without an exception, the server is running
host.ServerRunning = true;
}
catch (ApplicationException)
catch (ReplayCreateException)
{
}
}