Package org.objectweb.perseus.pool.api

Examples of org.objectweb.perseus.pool.api.PoolException


      Fractal.getLifeCycleController(pmC).startFc();
      Fractal.getLifeCycleController(tC).startFc();

      return pm;
    } catch (Exception e) {
      PoolException pe = new PoolException(
        "Error during the allocation of a new POManagerItf and its WorkingSet", e);
      logger.log(BasicLevel.ERROR, pe.getMessage() + ": " + e.getMessage(), e);
      throw pe;
    }
  }
View Full Code Here


        connection = super.getConnection();
      } else {
        connection = super.getConnection(hints);
      }
    } catch (PException e) {
      throw new PoolException("Error during the allocation a new JDBC connection", e);
    }
    if (logger != null && logger.isLoggable(BasicLevel.DEBUG)) {
      logger.log(BasicLevel.DEBUG,
          "New JDBC connection allocated for the pool:" + connection);
    }
View Full Code Here

TOP

Related Classes of org.objectweb.perseus.pool.api.PoolException

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.