Package org.teiid.core

Examples of org.teiid.core.ComponentNotFoundException


    }
   
  public ClientService getClientService(String iface) throws ComponentNotFoundException {
    ClientService cs = clientServices.get(iface);
    if (cs == null) {
      throw new ComponentNotFoundException(RuntimePlugin.Util.getString("ServerWorkItem.Component_Not_Found", type, iface)); //$NON-NLS-1$
    }
    return cs;
  }
View Full Code Here


      }
 
      // Check for special lookup function
      if(fd.getName().equalsIgnoreCase(FunctionLibrary.LOOKUP)) {
          if(dataMgr == null) {
              throw new ComponentNotFoundException("ERR.015.006.0055", QueryPlugin.Util.getString("ERR.015.006.0055")); //$NON-NLS-1$ //$NON-NLS-2$
          }
 
          String codeTableName = (String) values[0];
          String returnElementName = (String) values[1];
          String keyElementName = (String) values[2];
View Full Code Here

TOP

Related Classes of org.teiid.core.ComponentNotFoundException

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.