Package org.auraframework.throwable.quickfix

Examples of org.auraframework.throwable.quickfix.InvalidEventTypeException


    @Override
    public void addClientApplicationEvent(Event event) throws Exception {
        if (event != null) {
            if (event.getDescriptor().getDef().getEventType() != EventType.APPLICATION) {
                throw new InvalidEventTypeException(
                        String.format("%s is not an Application event. "
                                + "Only Application events are allowed to be fired from server.",
                                event.getDescriptor()), null);
            }
            clientEvents.add(event);
View Full Code Here

TOP

Related Classes of org.auraframework.throwable.quickfix.InvalidEventTypeException

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.