Exceptions text better readability
Opened this issue · 0 comments
GoogleCodeExporter commented
UibLib.pas
Line 1528
was: Exception.Message := Exception.Message + 'Error Code: ' +
IntToStr(Exception.FErrorCode);
better: Exception.Message := Exception.Message + '. Error Code: ' +
IntToStr(Exception.FErrorCode);
Error Code is to be separated from previous GDS Code.
Original issue reported on code.google.com by Arioch...@gmail.com
on 31 Oct 2011 at 7:56