Skip to content

Commit dfc5316

Browse files
Update non-class-exception.md
1 parent f6b404c commit dfc5316

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

docs/checks/non-class-exception.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# code pal for ABAP
2-
31
[code pal for ABAP](../../README.md) > [Documentation](../check_documentation.md) > [Non-Class Exception Usage Check](non-class-exception.md)
42

53
## Non-Class Exception Check Usage
64

75
### What is the Intent of the Check?
86

9-
The “Non-Class Exception Usage” Check searches for non-class based execeptions raised in your code.
7+
This check searches for non-class based execeptions raised in your code.
108

119
### How does the check work?
1210

@@ -16,10 +14,6 @@ It search for non class-based exceptions like:
1614
* `RAISE` ( without `EXCEPTION` or `RESUMABLE EXCEPTION` )
1715
* `MESSAGE with RAISING`
1816

19-
### Which attributes can be maintained?
20-
21-
![Attributes](./imgs/non_class_based_exception.png)
22-
2317
### How to solve the issue?
2418

2519
The solution is to use class-base exceptions like:
@@ -31,7 +25,7 @@ The solution is to use class-base exceptions like:
3125

3226
### What to do in case of exception?
3327

34-
In special cases you can suppress this Check’s finding by using the pseudo comment `“#EC NON_CL_EXCEPT`.
28+
In exceptional cases, you can suppress this finding by using the pseudo comment `“#EC NON_CL_EXCEPT`:
3529

3630
```abap
3731
RAISE SYSTEM-EXCEPTIONS. "#EC NON_CL_EXCEPT

0 commit comments

Comments
 (0)