Index: TECH/Exceptions/Exception.cls.xml =================================================================== diff -u -r896 -r904 --- TECH/Exceptions/Exception.cls.xml (.../Exception.cls.xml) (revision 896) +++ TECH/Exceptions/Exception.cls.xml (.../Exception.cls.xml) (revision 904) @@ -38,8 +38,7 @@ -%String -list +%GlobalCharacterStream @@ -92,7 +91,12 @@ 0 TekstStream.WriteLine(Prefix_"Extra info:"_$$$TAB_##class(TECH.ListUtils).ListToPieces(..ExtraInfo,$$$CRLF)) + + if ..ExtraInfo.Size>0 { + do TekstStream.WriteLine(Prefix_"Extra info:"_$$$CRLF) + do TekstStream.CopyFrom(..ExtraInfo) + } + Do TekstStream.WriteLine(Prefix_"ErrorCode: "_$$$TAB_..GeefExceptionCode()) Do:$length(..GeefTekstOpLijn()) TekstStream.WriteLine(Prefix_..GeefTekstOpLijn()) Do TekstStream.WriteLine(Prefix_"Tijdstip: "_$$$TAB_..GeefTijdstip()) @@ -198,8 +202,13 @@ -ExtraInfo:%String="" -ExtraInfo:%CacheString="" + Index: TECH/IException.cls.xml =================================================================== diff -u -r179 -r904 --- TECH/IException.cls.xml (.../IException.cls.xml) (revision 179) +++ TECH/IException.cls.xml (.../IException.cls.xml) (revision 904) @@ -37,6 +37,16 @@ %XML.Adaptor + +1 +ExtraInfo:%CacheString + + + +1 +%String + + Wordt door de error handler in het e-mailbericht bijgeschreven.