翼度科技»论坛 编程开发 .net 查看内容

如何正确实现一个自定义 Exception

8

主题

8

帖子

24

积分

新手上路

Rank: 1

积分
24
最近在公司的项目中,编写了几个自定义的 Exception 类。提交 PR 的时候,sonarqube 提示这几个自定义异常不符合 ISerializable patten. 花了点时间稍微研究了一下,把这个问题解了。今天在此记录一下,可能大家都会帮助到大家。
自定义异常

编写一个自定义的异常,继承自 Exception,其中定义一个 ErrorCode 来存储异常编号。平平无奇的一个类,太常见了。大家觉得有没有什么问题?
  1.     [Serializable]
  2.     public class MyException : Exception
  3.     {
  4.         public string ErrorCode { get;}
  5.         public MyException(string message, string errorCode) : base(message)
  6.         {
  7.             ErrorCode = errorCode;
  8.         }
  9.     }
复制代码
如我们对这个异常编写一个简单的单元测试。步骤如下:
  1.         [TestMethod()]
  2.         public void MyExceptionTest()
  3.         {
  4.             // arrange
  5.             var orignalException = new MyException("Hi", "1000");
  6.             var bf = new BinaryFormatter();
  7.             var ms = new MemoryStream();
  8.             // act
  9.             bf.Serialize(ms, orignalException);
  10.             ms.Seek(0, 0);
  11.             var newException = bf.Deserialize(ms) as MyException;
  12.             // assert
  13.             Assert.AreEqual(orignalException.Message, newException.Message);
  14.             Assert.AreEqual(orignalException.ErrorCode, newException.ErrorCode);
  15.         }
复制代码
这个测试主要是对一个 MyException 的实例使用 BinaryFormatter 进行序列化,然后反序列化成一个新的对象。将新旧两个对象的 ErrorCode 跟 Message 字段进行断言,也很简单。
让我们运行一下这个测试,很可惜失败了。测试用例直接抛了一个异常,大概是说找不到序列化构造器。

Designing Custom Exceptions Guideline

简单的搜索了一下,发现微软有对于自定义 Exception 的
Designing Custom Exceptions
总结一下大概有以下几点:

  • 一定要从 System.Exception 或其他常见基本异常之一派生异常。
  • 异常类名称一定要以后缀 Exception 结尾。
  • 应使异常可序列化。 异常必须可序列化才能跨越应用程序域和远程处理边界正确工作。
  • 一定要在所有异常上都提供(至少是这样)下列常见构造函数。 确保参数的名称和类型与在下面的代码示例中使用的那些相同。
  1. public class NewException : BaseException, ISerializable
  2. {
  3.     public NewException()
  4.     {
  5.         // Add implementation.
  6.     }
  7.     public NewException(string message)
  8.     {
  9.         // Add implementation.
  10.     }
  11.     public NewException(string message, Exception inner)
  12.     {
  13.         // Add implementation.
  14.     }
  15.     // This constructor is needed for serialization.
  16.    protected NewException(SerializationInfo info, StreamingContext context)
  17.    {
  18.         // Add implementation.
  19.    }
  20. }
复制代码
按照上面的 guideline 重新改一下我们的 MyException,主要是添加了几个构造器。修改后的代码如下:
  1.     [Serializable]
  2.     public class MyException : Exception
  3.     {
  4.         public string ErrorCode { get; }
  5.         public MyException()
  6.         {
  7.         }
  8.         public MyException(string message, string errorCode) : base(message)
  9.         {
  10.             ErrorCode = errorCode;
  11.         }
  12.         public MyException(string message, Exception inner): base(message, inner)
  13.         {
  14.         }
  15.         protected MyException(SerializationInfo info, StreamingContext context)
  16.         {
  17.         }
  18.     }
复制代码
很可惜按照微软的 guideline 单元测试还是没通过。获取 Message 字段的时候会直接 throw 一个 Exception。

那么到底该怎么实现呢?
正确的方式

我们还是按照微软 guideline 进行编写,但是在序列化构造器的上调用 base 的构造器。并且 override 基类的 GetObjectData 方法。
  1.     [Serializable]
  2.     public class MyException : Exception
  3.     {
  4.         public string ErrorCode { get; }
  5.         public MyException()
  6.         {
  7.         }
  8.         public MyException(string message, string errorCode) : base(message)
  9.         {
  10.             ErrorCode = errorCode;
  11.         }
  12.         public MyException(string message, Exception inner): base(message, inner)
  13.         {
  14.         }
  15.         protected MyException(SerializationInfo info, StreamingContext context): base(info, context)
  16.         {
  17.             // Set the ErrorCode value from info dictionary.
  18.             ErrorCode = info.GetString("ErrorCode");
  19.         }
  20.         public override void GetObjectData(SerializationInfo info, StreamingContext context)
  21.         {
  22.             if (!string.IsNullOrEmpty(ErrorCode))
  23.             {
  24.                 // Add the ErrorCode to the SerializationInfo dictionary.
  25.                 info.AddValue("ErrorCode", ErrorCode);
  26.             }
  27.             base.GetObjectData(info, context);
  28.         }
  29.     }
复制代码
在序列化构造器里从 SerializationInfo 对象里恢复 ErrorCode 的值。调用 base 的构造可以确保基类的 Message 字段被正确的还原。这里与其说是序列化构造器不如说是反序列化构造器,因为这个构造器会在反序列化恢复成对象的时候被调用。
  1.    protected MyException(SerializationInfo info, StreamingContext context): base(info, context)
  2.         {
  3.             // Set the ErrorCode value from info dictionary.
  4.             ErrorCode = info.GetString("ErrorCode");
  5.         }
复制代码
这个 GetObjectData 方法是 ISerializable 接口提供的方法,所以基类里肯定有实现。我们的子类需要 override 它。把自己需要序列化的字段添加到 SerializationInfo 对象中,这样在上面反序列化的时候确保可以把字段的值给恢复回来。记住不要忘记调用 base.GetObjectData(info, context),  确保基类的字段数据能正确的被序列化。
  1.     public override void GetObjectData(SerializationInfo info, StreamingContext context)
  2.         {
  3.             if (!string.IsNullOrEmpty(ErrorCode))
  4.             {
  5.                 // Add the ErrorCode to the SerializationInfo dictionary.
  6.                 info.AddValue("ErrorCode", ErrorCode);
  7.             }
  8.             base.GetObjectData(info, context);
  9.         }
复制代码
再次运行单元测试,这次顺利的通过了
来源:https://www.cnblogs.com/kklldog/archive/2023/09/03/how-to-design-exception.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具