Package org.eclipse.ecf.core

Examples of org.eclipse.ecf.core.ContainerCreateException


          ka = new Integer(XMPPSContainer.DEFAULT_KEEPALIVE);
        }
        return new XMPPSContainer(name, ka.intValue());
      }
    } catch (Exception e) {
      throw new ContainerCreateException(
          "Exception creating generic container", e);
    }
  }
View Full Code Here


      if (container == null) {
        container = new BitTorrentContainer();
      }
      return container;
    } catch (IDCreateException e) {
      throw new ContainerCreateException(e);
    }
  }
View Full Code Here

  public IContainer createInstance(ContainerTypeDescription description,
      Object[] parameters) throws ContainerCreateException {
    try {
      return new MSNContainer();
    } catch (IDCreateException e) {
      throw new ContainerCreateException(e);
    }
  }
View Full Code Here

      Object[] args) throws ContainerCreateException {
    ID guid;
    try {
      guid = IDFactory.getDefault().createGUID();
    } catch (IDCreateException e) {
      throw new ContainerCreateException("Exception creating ID", e);
    }
    return new PHPBBContainer(guid);
  }
View Full Code Here

        localID = (LocalID) parameters[0];
      else
        localID = (LocalID) IDFactory.getDefault().createID(LocalNamespace.NAME, parameters);
      return new LocalRemoteServiceContainer(localID);
    } catch (Exception e) {
      throw new ContainerCreateException("Could not create LocalRemoteServiceContainer", e); //$NON-NLS-1$
    }
  }
View Full Code Here

          ka = new Integer(XMPPContainer.DEFAULT_KEEPALIVE);
        }
        return new XMPPContainer(name, ka.intValue());
      }
    } catch (Exception e) {
      throw new ContainerCreateException(
          "Exception creating generic container", e);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.core.ContainerCreateException

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.