namespace Yw.BIMFace { /// /// /// internal static class ExceptionHelper { /// /// 尝试抛异常 /// public static void TryThrowException(this GeneralResponse response) { if (response == null) { return; } if (response.Code == Constants.Success) { return; } throw new BIMFaceException(response.Code); } } }