Package org.auraframework.throwable.quickfix

Examples of org.auraframework.throwable.quickfix.ThemeValueNotFoundException


        }

        // check namespace-default theme
        value = namespaceTheme.getDef().getVar(reference.getRoot());
        if (!value.isPresent()) {
            throw new ThemeValueNotFoundException(reference.getRoot(), namespaceTheme, reference.getLocation());
        }

        return value;
    }
View Full Code Here


        }

        Set<String> namesSet = ImmutableSet.copyOf(names);
        for (PropertyReference ref : expressionRefs) {
            if (!namesSet.contains(ref.toString())) {
                throw new ThemeValueNotFoundException(ref.toString(), descriptor, getLocation());
            }
        }
    }
View Full Code Here

TOP

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

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.