function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Murali MattaMurali Matta 

Where can I find the Exceptions stored in Salesforce?

Example: When we click on Save button (assuming exception has occured) it throws an Exception 'Trigger has been failed due to after insert'

Are this Exceptions are stored in Standard objects in Salesforce? If Stored in which object are they stored
Raj VakatiRaj Vakati
No .. Salesforce wnt store any Exceptions in salesforce other than Duplicate rules or matching rules or Batch Platform Events 

If you want to store you need to log into the custome exception object 
 
try{

}catch(Exception e){

Log__c lo = new Log__c() ; 
// Add other exception related
insert lo ; 


}