Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/utils/SystemErrorReporter.java

Diff revisions: vs.
  @@ -8,19 +8,16 @@
8 8 public interface SystemErrorReporter {
9 9 /**
10 10 * Report a System Error to the User and possibly log it to the server.
11 - *
11 + * <p/>
12 12 * The source can be used to bundle the exceptions. e.g. 5 exceptions thrown from the same source should be shown as a group!
13 - *
13 + * <p/>
14 14 * Note: 'context' or 'caught' will NOT be null!
15 15 *
16 - * @param source
17 - * - The "source" of the Error (!nullable)
18 - * @param context
19 - * - What ever context the developer thought would add value
20 - * (nullable)
21 - * @param throwable
22 - * - The actual exception that generated the call to this method
23 - * (!nullable)
16 + * @param source - The "source" of the Error (!nullable)
17 + * @param context - What ever context the developer thought would add value
18 + * (nullable)
19 + * @param throwable - The actual exception that generated the call to this method
20 + * (!nullable)
24 21 */
25 - void reportSystemError(String source, String context, Throwable throwable);
22 + void reportSystemError( String source, String context, Throwable throwable );
26 23 }