Nueva mejoras Y estabilidad

This commit is contained in:
2025-12-26 22:27:20 -06:00
parent 203859b22a
commit ac96cb1f23
23 changed files with 1841 additions and 480 deletions

View File

@@ -0,0 +1,7 @@
namespace MicroORM.Exceptions;
public class OrmException : Exception
{
public OrmException(string message, Exception? inner = null)
: base(message, inner) { }
}