Skip to content

Commit

Permalink
Fix throw warning
Browse files Browse the repository at this point in the history
  • Loading branch information
DubyaDude committed Nov 15, 2023
1 parent 99a6db9 commit 74cd52a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dotnet/SQLite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2003,7 +2003,7 @@ public int Update (object obj, Type objType)
throw NotNullConstraintViolationException.New (ex, map, obj);
}

throw ex;
throw;
}

if (rowsAffected > 0)
Expand Down

0 comments on commit 74cd52a

Please sign in to comment.