G-9113
🆓Warning 
Always follow naming conventions for exceptions.
Reason
PL/SQL identifiers share the same namespace as SQL identifiers. Follow naming conventions to prevent naming conflicts, improve readability, and clearly indicate the scope without forcing the use of qualified names. A common practice is to use a prefix and/or suffix to distinguish the identifier types.
Example
Non-Compliant Example
declare some_name exception; begin null; end; /
Issues
| Line | Column | Message | 
|---|---|---|
| 2 | 4 | 
 Compliant Solution - ★★★★★
declare e_some_name exception; begin null; end; /
Parameters
Use parameters to customize the rule to your needs.
| Parameter | Description | Default Value | 
|---|---|---|
| ExceptionPattern | Regular expression pattern for PL/SQL exceptions. | (?i)^e_[a-z0-9$#_]+$ | 
References
- same as plsql:NamingExceptionsCheck
