12345678910111213141516171819202122232425 |
- /*-------------------------------------------------------------------------
- * 功能描述:ExceptionUtil
- * 作者:xulisong
- * 创建时间: 2019/6/17 17:55:09
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RevitToJBim.Common
- {
- public class ExceptionUtil
- {
- public static void ThrowIfDubug(Exception e)
- {
- #if DEBUG
- throw e;
- #endif
- }
- }
- }
|