timeoutexception.java

来自「Contents * Introduction * Installa」· Java 代码 · 共 38 行

JAVA
38
字号
/*
 * @(#) 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 TimeOutException extends ConnectionPoolException {
    
  public TimeOutException() {
      
      super();            

  }

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

  }

  public String toString()  {

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

⌨️ 快捷键说明

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