Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public enum AuditLoggerError implements ErrorCode {
  /** An unknown error has occurred. */
  AUDIT_0000("An unknown error has occurred"),
  /** The system was unable to find or load the audit logger provider. */
  AUDIT_0001("The system was unable to find or load audit logger class"),
  /** The audit logger output file is not given. */
  AUDIT_0002("The output file for FileAuditLogger is not given"),
  ;





public enum AuditLoggerError implements ErrorCode {




  /** An unknown error has occurred. */

  AUDIT_0000("An unknown error has occurred"),




  /** The system was unable to find or load the audit logger provider. */

  AUDIT_0001("The system was unable to find or load audit logger class"),




  /** The audit logger output file is not given. */

  AUDIT_0002("The output file for FileAuditLogger is not given"),




  ;

 

 

 

 

 

Before you get on to uploading the patch, also read this wiki that will help with getting through larger feature reviews quicker

...