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
sandeep@Salesforcesandeep@Salesforce 

common.apex.runtime.impl.ExecutionException:

Does any body have any idea for this follwoing error message:

 

 

common.apex.runtime.impl.ExecutionException: Invalid conversion from runtime type String to LIST<Integer>

 

 

sfdcfoxsfdcfox

It means you're doing something you shouldn't be trying to do, like possibly:

 

integer[] o = new integer[0];

account a = new account();

a.put( account.name, o );

 

znithchhunznithchhun
Nice!!! sfdcfox. I have reivewed all my varriable datatype and the assigned value doesn't match