ExceptionUtil.cs 575 B

12345678910111213141516171819202122232425
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ExceptionUtil
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/17 17:55:09
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace RevitToJBim.Common
  13. {
  14. public class ExceptionUtil
  15. {
  16. public static void ThrowIfDubug(Exception e)
  17. {
  18. #if DEBUG
  19. throw e;
  20. #endif
  21. }
  22. }
  23. }