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

📄 workrequestssendexception.java

📁 JGAP是一种遗传算法和遗传规划的组成部分提供了一个Java框架。它提供了基本的遗传机制
💻 JAVA
字号:
package org.jgap.distr.grid.common;

import org.jgap.distr.grid.gp.*;

/**
 * Exception when sending work requests. Stores the work requests, for which
 * sending failed.
 *
 * @author Klaus Meffert
 * @since 3.3.3
 */
public class WorkRequestsSendException
    extends Exception {
  private JGAPRequestGP[] m_workRequests;

  public WorkRequestsSendException() {
    super();
  }

  public WorkRequestsSendException(Exception a_ex) {
    super(a_ex);
  }

  public WorkRequestsSendException(Exception a_ex,
                                   JGAPRequestGP[] a_workRequests) {
    super(a_ex);
    m_workRequests = a_workRequests;
  }

  public JGAPRequestGP[] getWorkRequests() {
    return m_workRequests;
  }
}

⌨️ 快捷键说明

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