Package org.auraframework.throwable

Examples of org.auraframework.throwable.GenericEventException


    }

    @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;
    }
View Full Code Here

TOP

Related Classes of org.auraframework.throwable.GenericEventException

Copyright © 2018 www.massapicom. 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.