}
@AuraEnabled
public static void throwsCSE(@Key("event") String event, @Key("paramName") String paramName,
@Key("paramValue") String paramValue) throws Throwable {
GenericEventException gee = new GenericEventException(event);
if (paramName != null) {
gee.addParam(paramName, paramValue);
}
throw gee;
}