diff options
Diffstat (limited to 'docs/adk15ProgGuideDB/miscellaneous.xml')
-rw-r--r-- | docs/adk15ProgGuideDB/miscellaneous.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/adk15ProgGuideDB/miscellaneous.xml b/docs/adk15ProgGuideDB/miscellaneous.xml index 899ac1208..24a677cf7 100644 --- a/docs/adk15ProgGuideDB/miscellaneous.xml +++ b/docs/adk15ProgGuideDB/miscellaneous.xml @@ -49,7 +49,7 @@ <programlisting><![CDATA[ declare soft : SomeRuntimeException : execution(* *(..)); - >> "SomeRuntimeException will not be softened as it is already a RuntimeException" [XLint:runtimeExceptionNotSoftened] + >> "SomeRuntimeException will not be softened as it is already a RuntimeException" [XLint:runtimeExceptionNotSoftened] ]]></programlisting> <para> @@ -58,7 +58,7 @@ <para> If the exception type specified in a declare soft statement is a super type of <literal>RuntimeException</literal> - (such as <literal>Exception</literal> for example) then any <i>checked</i> exception thrown at a matched join point, + (such as <literal>Exception</literal> for example) then any <emphasis>checked</emphasis> exception thrown at a matched join point, where the exception is an instance of the softened exception, will be softened to an <literal>org.aspectj.lang.SoftException</literal>. </para> |