SharpBits.Base.BitsError.BitsError C# (CSharp) Method

BitsError() private method

Initializes a new instance of the BitsError class.
private BitsError ( BitsJob job, IBackgroundCopyError error ) : System
job BitsJob The job the error occurred on.
error IBackgroundCopyError The error that occurred.
return System
        internal BitsError(BitsJob job, IBackgroundCopyError error)
        {
            if (null == error)
            {
                throw new ArgumentNullException(@"error");
            }

            this.error = error;
            this.job = job;
        }
BitsError