Name of Exception Class (NEC)

Description:

Names of classes that inherit from Exception should end with "Exception". But if a class not derived from Exception it should not ends with 'Exception. If it is not so, NEC generates warrning messages.

Example:

class AuditException extends Exception {}
class NOEC extends Exception {}