public double DivideByZero(int x, int y)
{
if (y == 0)
{
throw new FaultException<ArgumentException>
(new ArgumentException("Just some dummy exception")
,new FaultReason("some very bogus reason"), new FaultCode("007"));
}
return x / y;
}
下面是从client:-
Console.WriteLine("Enter the x value");
string x = Console.ReadLine();
Console.WriteLine("Enter the Y value");
string y = Console.ReadLine();
try
{
double val = client.DivideByZero(Convert.ToInt32(x), Convert.ToInt32(y));
Console.WriteLine("The result is " + val.ToString());
}
catch(FaultException<ArgumentException> exp)
{
Console.WriteLine("An ArgumentException was thrown by the service "+ exp.ToString());
}
catch (Exception exp)
{
Console.WriteLine(exp.ToString());
}
在上述情况下,catch(FaultException exp)(客户机代码中第一个带有ArgumentException的catch块)块不会执行。但是,当我删除ArgumentException以获得catch(FaultException exp)时,会执行相同的catch块。我不确定这一点,因为我抛出了我的经营合同例外。我有什么遗漏吗。
感谢你的帮助,
编辑:-当我更新客户机中的服务引用时,我能够捕捉到
FaultException<ArgumentException>
例外。