Wednesday, November 20, 2013
Salesforce Apex: An unexpected error occurred
I got this when I defined a for loop as follows:
for (i=0; i<collection.size(); i++)
The fix is to correct the definition as follows:
for (
integer
i=0; i<collection.size(); i++)
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment