Using the Aura exception handling factory enables developer/user friendly error messages based on the exception type.
Usages
@AuraEnabled
public static String getSomething()
{
try {
// do something
} catch (Exception cause) {
throw AuraHandledExceptionFactory.create(cause);
}
}
Basic Aura Handled Exception Factory class
Basic solution enables developer friendly error messages when unit testing.
public class AuraHandledExceptionFactory {
public static AuraHandledException create(Exception cause) {
AuraHandledException error = new AuraHandledException(cause.getMessage());
error.setMessage(cause.getMessage());
return error;
}
}
Advanced Aura Handled Exception Factory class
Following the Open/Closed Principle this solution allows developers to implement custom error message responses based on the exception type.