From: William Victor Mote Date: Mon, 7 Jul 2003 17:01:45 +0000 (+0000) Subject: Include missing URL missed in translation from wiki. X-Git-Tag: Root_Temp_KnuthStylePageBreaking~1319 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ab869405740b8364ba848dc3bafccb109c4e33ab;p=xmlgraphics-fop.git Include missing URL missed in translation from wiki. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196635 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/dev/conventions.xml b/src/documentation/content/xdocs/dev/conventions.xml index 320efbc47..658a2e629 100644 --- a/src/documentation/content/xdocs/dev/conventions.xml +++ b/src/documentation/content/xdocs/dev/conventions.xml @@ -82,7 +82,7 @@ This favors a clearer design and makes switching between implementations easier
  • Avoid using exceptions for flow control.
  • Try to catch exceptions as much as possible and rethrow higher level exceptions (meaning hiding the low level detailed and putting a message that is more related to the function of your code).
  • It is important not to lose the stack trace which contains important information. -Use chained exception for that. Avalon Framework provides [CascadingException] (and similar) for this. +Use chained exception for that. Avalon Framework provides CascadingException (and similar) for this. Exception class names and stack traces must be treated like gold. Do whatever is required so that this information is not lost. Printing error messages to System.err or System.out is useless in a server-side environment where this info is usually lost.