summaryrefslogtreecommitdiff
path: root/csharp/src/IceBox/ServiceManagerI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/src/IceBox/ServiceManagerI.cs')
-rw-r--r--csharp/src/IceBox/ServiceManagerI.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/src/IceBox/ServiceManagerI.cs b/csharp/src/IceBox/ServiceManagerI.cs
index e1bb8edc6b2..e716bfa8360 100644
--- a/csharp/src/IceBox/ServiceManagerI.cs
+++ b/csharp/src/IceBox/ServiceManagerI.cs
@@ -507,13 +507,13 @@ class ServiceManagerI : ServiceManagerDisp_
{
serviceAssembly = System.Reflection.Assembly.Load(assemblyName);
}
- catch(System.IO.IOException ex)
+ catch(Exception)
{
try
{
serviceAssembly = System.Reflection.Assembly.LoadFrom(assemblyName);
}
- catch(System.IO.IOException)
+ catch(Exception)
{
throw ex;
}