Remove DbModelConfigurationException and related logic

Removed the DbModelConfigurationException class and all its usages from DbModelOptions and EntityOptions. Indexers in these classes no longer throw this exception when configuration is missing. Updated the project file to include the Common\Options\DbModel\ folder.
This commit is contained in:
2026-03-26 10:34:24 +01:00
parent 06e92b588f
commit e96773f3c4
4 changed files with 1 additions and 53 deletions

View File

@@ -1,8 +0,0 @@
namespace ReC.Application.Common.Exceptions;
public class DbModelConfigurationException : Exception
{
public DbModelConfigurationException() { }
public DbModelConfigurationException(string message) : base(message) { }
}