我正在使用带有自定义异常的Agatha框架。我有一个例外MyException
,我在配置请求时将其指定为BusinessExceptionType
:
new ServiceLayerConfiguration(Assembly.GetExecutingAssembly(), typeof(SomeRequestResponse.MakeARequest).Assembly, typeof(Container)) { BusinessExceptionType = typeof(MyException) }.Initialize();
这就是我抛出异常的方式:
throw new MyException(message);
但是,当抛出异常时,MyException
不会被识别为BusinessExceptionType
。如何将其识别为BusinessExceptionType
?以下情况并非如此。
if (response.ExceptionType == ExceptionType.Business)
以下是异常类:
public class MyException : Exception
{
public MyException()
{
}
public MyException(string message) : base(message)
{
}
public MyException(string message, Exception inner) : base(message, inner)
{
}
protected MyException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
更新
在BusinessExceptionType
变为serviceLayerConfiguration
之后,当我第一次发出请求时,BusinessExceptionType
似乎已正确设置null
。在配置请求和发出第一个请求之间的某个地方,它变为null
。要么是,要么在serviceLayerConfiguration
抓取不同的RequestProcessor.cs
。对此有任何帮助表示赞赏。
答案 0 :(得分:0)
我发现你必须在投掷之前在响应中设置异常类型。
return new SomeRequestResponse.MakeAResponse() { Exception = new Exception(ex), ExceptionType = ExceptionType.Business };
然后在您的消费者中,这句话将成立:
if (response.ExceptionType == ExceptionType.Business)
如果您想自己制作例外,也可以这样做:
return new MakeARequestResponse.MakeAResponse()
{
Exception = new ExceptionInfo(new Exception("Whatever you want to say.")),
ExceptionType = ExceptionType.Business
};