Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix exception code usage #1955

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions LiteDB/Engine/Services/SnapShot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public T NewPage<T>()
// checks if not exceeded data file limit size
var newLength = (_header.LastPageID + 1) * PAGE_SIZE;

if (newLength > _header.Pragmas.LimitSize) throw new LiteException(0, $"Maximum data file size has been reached: {FileHelper.FormatFileSize(_header.Pragmas.LimitSize)}");
if (newLength > _header.Pragmas.LimitSize) throw LiteException.FileSizeExceeded(_header.Pragmas.LimitSize);

// increase LastPageID from shared page
pageID = ++_header.LastPageID;
Expand Down Expand Up @@ -632,4 +632,4 @@ public override string ToString()
return $"{_collectionName} (pages: {_localPages.Count})";
}
}
}
}