Detector.Motion.MotionDetector.Error C# (CSharp) Method

Error() private method

Error without halting on release builds
private Error ( string error ) : void
error string String for the exception
return void
        private void Error(string error)
        {
            #if DEBUG
            //throw new Exception(error);
            #endif
        }