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

📄 illegaltimeexception.java

📁 JAVA版的蚂蚁算法(Ant Colony Optimization Algorithms)
💻 JAVA
字号:
package dk.itu.nulx30.eventSimulation.exceptions;

/**
 * Class <code>IllegalTimeException</code> is thrown in the classes
 * <code>Router</code>, <code>Wire</code> and in various events. An
 * <code>IllegalTimeException</code> is thrown if a new next-event time is
 * greater than a old next-event time.
 *
 * @author  Mikkel Bundgaard
 * @author  Troels C. Damgaard
 * @author  Federico Decara
 * @author  Jacob W. Winther
 *
 * @see dk.itu.nulx30.networkModel.Wire
 * @see dk.itu.nulx30.networkModel.Router
 */
public class IllegalTimeException extends Exception {

  /**
   * Public constructor, that creates a <code>IllegalTimeException</code>
   * with a string argument, which is a string representation of the exception.
   *
   * @param thrower string representation of the exception
   */
  public IllegalTimeException( String thrower ) {
    super( thrower );
  }
}



⌨️ 快捷键说明

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