コード例 #1
0
ファイル: PythonBridge.java プロジェクト: LuanVietNguyen/hyst
  private void error(String description, Exception e) {
    close();

    throw new AutomatonExportException(description, e);
  }
コード例 #2
0
ファイル: PythonBridge.java プロジェクト: LuanVietNguyen/hyst
  /**
   * Close the process (if needed), and raise an error
   *
   * @param description the error description
   */
  private void error(String description) {
    Hyst.logDebug(description);
    close();

    throw new AutomatonExportException(description);
  }