Guest User

Untitled

a guest
Oct 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. trigger CertifiedUpdates_UPDATE_AFTER on Certification_Updates__c (after insert, after update) {
  2.  
  3. // update education certification renewal status
  4. try
  5. {
  6. Handler_CertifiedUpdates.UpdateCertifiedStatus(trigger.newMap.keySet());
  7.  
  8. UnitTest_Exception_Manager.HandleUnitTestException();
  9. }
  10. catch(Exception ex)
  11. {
  12. // logging
  13. Util_Logging.logRecordErrors(trigger.newMap.keySet(), 'ERROR: Unable to update education certification renewal status.');
  14. Util_Logging.logSystemErrors(trigger.newMap.keySet(), 'ERROR: Unable to update education certification renewal status.', ex.getMessage());
  15. }
  16. }
Add Comment
Please, Sign In to add comment