| Summary: | Unclear sentence. | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Bob NIcholson <bob> |
| Component: | EDT | Assignee: | Ben Margolis <margolis> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | margolis, svihovec |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
Bob NIcholson
Changed the exception handler:
sysLib.writeStderr("Failure: " + ex.message);
if (ex isa ServiceInvocationException)
sysLib.writeStderr("Detail 1: " +
(ex as ServiceInvocationException).detail1);
sysLib.writeStderr("Detail 2: " +
(ex as ServiceInvocationException).detail2);
sysLib.writeStderr("Detail 3: " +
(ex as ServiceInvocationException).detail3);
end
Changed the statement:
The example exception handler writes text to the Eclipse console or other standard error output. This behavior is appropriate for prototypes and early in development. For production code, you need to consider the exception-handling requirements that are specific to your situation.
updated to show that this defect was fixed in 0.8.0 I1 |