BplusDotNet.LinkedFile.sanityCheck C# (CSharp) Method

sanityCheck() private method

private sanityCheck ( ) : void
return void
        void sanityCheck()
        {
            if (this.seekStart<0)
            {
                throw new LinkedFileException("cannot seek negative "+this.seekStart);
            }
            if (this.buffersize<MINBUFFERSIZE)
            {
                throw new LinkedFileException("buffer size too small "+this.buffersize);
            }
        }