⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 staleconnectionexception.java

📁 Contents * Introduction * Installation * SmartPool 1.5 * Features from earlier releases
💻 JAVA
字号:
/*
 * @(#) TimeOutException.java 1.0 02/08/01
 */
package org.smartlib.pool.core;


/**
 * When a consumer is kept waiting for more than time specified in
 * connection-wait-time-out in the configuration file, a
 * TimeOutException is thrown. This class extends
 * ConnectionPoolException.
 * 
 * @author	Sachin Shekar Shetty  
 * @version 1.0, 02/08/01
 */

public class StaleConnectionException extends ConnectionPoolException {
    
  public StaleConnectionException() {
      
      super();            

  }

  public StaleConnectionException(String msg) {
      
      super(msg);

  }

  public String toString()  {

    return ("StaleConnectionException: " + message);
      
  }
      
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -