Package org.tuba.exceptions

Examples of org.tuba.exceptions.MissingProviderException


    XMLProvider xmlProvider = reference.getProvider();
    if (xmlProvider == null) {
      // TODO externalize
      String message = "there is no provider"; //$NON-NLS-1$
      showError(message);
      throw new MissingProviderException();
    }
    String id = xmlProvider.getId();
    MetaProvider provider = pluginManager.getProvider(id);
    if (provider == null) {
      // TODO externalize
      String message = "can't insantiate provider '" + id + "'"; //$NON-NLS-1$ //$NON-NLS-2$
      showError(message);
      throw new MissingProviderException(id);
    }

    String firstArtefactType = provider.getProvidedArtefactType();
    checkOperationOrder(firstArtefactType, operations);
View Full Code Here

TOP

Related Classes of org.tuba.exceptions.MissingProviderException

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.