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
csreddy7799csreddy7799 

display page message on LICENSE_LIMIT_EXCEEDED

Hi,

 

I am creating user record using VF page and Apex class. When an Org does not contains sufficient user licenses of Type Salesforce, then I get following message.

 

But I want to display these message in customized way. For example, Message as "Your Org does not have sufficient Licenses"

 

System.DmlException: Insert failed. First exception on row 0; first error: LICENSE_LIMIT_EXCEEDED, License Limit Exceeded: []

 

Now i want display page message instad of exception. is it possible?

Best Answer chosen by Admin (Salesforce Developers) 
bob_buzzardbob_buzzard

You can catch the DML error, inspect it and put your own error out.

 

Something like:

 

try
{
   insert myUser;
}
catch (DMLException e)
{
   if (e.getMessage().contains('LICENSE_LIMIT_EXCEEDED'))
   {
       ApexPages.addMessage(new ApexPages.message(ApexPages.Severity.Error, 'Your org does not have sufficient licenses'));
   }
   else
   {
      // rethrow the exception or take some other action here
      throw e;
   }
}