fixing misleading log output

This commit is contained in:
Christian 'ketura' McCarty
2024-12-07 11:15:24 -06:00
parent e8fdcff76c
commit 9c5499481a

View File

@@ -91,7 +91,7 @@ public class DbTransferDAO implements TransferDAO {
return id; return id;
} }
} catch (Exception ex) { } catch (Exception ex) {
throw new RuntimeException("Unable to insert transfer from", ex); throw new RuntimeException("Unable to insert transfer to", ex);
} }
} }