Package org.auraframework.throwable

Examples of org.auraframework.throwable.GenericEventException.addParam()


    @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;
    }

    @AuraEnabled
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.