diff --git a/AmalgamationTool/DynamORM.Amalgamation.cs b/AmalgamationTool/DynamORM.Amalgamation.cs
index 7090941..2e47ddb 100644
--- a/AmalgamationTool/DynamORM.Amalgamation.cs
+++ b/AmalgamationTool/DynamORM.Amalgamation.cs
@@ -6002,33 +6002,6 @@ namespace DynamORM
: base(string.Format("{0}{1}{2}", message, Environment.NewLine, command != null ? command.DumpToString() : string.Empty), innerException)
{
}
-
- /// Initializes a new instance of the
- /// class.
- /// The
- /// that holds the serialized object data about the exception being thrown.
- /// The
- /// that contains contextual information about the source or destination.
- public DynamicQueryException(SerializationInfo info, StreamingContext context)
- : base(info, context)
- {
- }
-
- /// When overridden in a derived class, sets the
- ///
- /// with information about the exception.
- /// The
- /// that holds the serialized object data about the exception being thrown.
- /// The
- /// that contains contextual information about the source or destination.
- ///
- ///
- ///
- ///
- public override void GetObjectData(SerializationInfo info, StreamingContext context)
- {
- base.GetObjectData(info, context);
- }
}
/// Stores information about column from database schema.
@@ -13327,7 +13300,7 @@ namespace DynamORM
catch (TargetInvocationException e)
{
if (e.InnerException != null) throw e.InnerException;
- else throw e;
+ throw;
}
}
@@ -14014,13 +13987,6 @@ namespace DynamORM
public DynamicMapperException(string message, Exception innerException) : base(message, innerException)
{
}
-
- /// Initializes a new instance of the class.
- /// The that holds the serialized object data about the exception being thrown.
- /// The that contains contextual information about the source or destination.
- protected DynamicMapperException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
}
/// Dynamic property invoker.
@@ -14110,10 +14076,10 @@ namespace DynamORM
private Func