Package org.eclipse.core.commands

Examples of org.eclipse.core.commands.ParameterValuesException


    if (values == null) {
      try {
        values = (IParameterValues) valuesConfigurationElement
            .createExecutableExtension(ATTRIBUTE_VALUES);
      } catch (final CoreException e) {
        throw new ParameterValuesException(
            "Problem creating parameter values", e); //$NON-NLS-1$
      } catch (final ClassCastException e) {
        throw new ParameterValuesException(
            "Parameter values were not an instance of IParameterValues", e); //$NON-NLS-1$
      }
    }

    return values;
View Full Code Here

TOP

Related Classes of org.eclipse.core.commands.ParameterValuesException

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.