Package org.python.pydev.core

Examples of org.python.pydev.core.PythonNatureWithoutProjectException


     * @note that an exception will be raised if the
     */
    public IInterpreterInfo getProjectInterpreter() throws MisconfigurationException,
            PythonNatureWithoutProjectException {
        if (this.project == null) {
            throw new PythonNatureWithoutProjectException("Project is not set.");
        }

        try {
            String projectInterpreterName = getProjectInterpreterName();
            IInterpreterInfo ret;
View Full Code Here

TOP

Related Classes of org.python.pydev.core.PythonNatureWithoutProjectException

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.