Package mbj.robotdriver

Examples of mbj.robotdriver.RobotDriverException


              theVolume, theIngredient.chemical().pipettingInfo().liquidClass().name());
          return outDispInfo;
        }
      } 
    }
    throw new RobotDriverException("Problem Trying to generate Dispense Info because water does not appear anymore in the plate.");
  }
View Full Code Here


      if (fileURL != null) {
        editorPane.setPage(fileURL);
        Document doc = editorPane.getDocument();
        doc.putProperty(Document.StreamDescriptionProperty, null);
      } else {
        throw new RobotDriverException("Couldn't find file: " + fileURL);
      }   
    } catch (Exception e) {
      // If a problem occur here it is a big problem
      // Display an Error dialog and End On ERROR
      UnHandledErrorDialog errdialog = new UnHandledErrorDialog(parentRobotDriver, "Robot Driver ERROR",
View Full Code Here

      out = new PrintWriter(new FileOutputStream(holdersFile));
      out.write(GoTecanHolders.this.editorPane.getText());
      out.close();
      parentRobotDriver.readTecanHolders();
    } catch (FileNotFoundException e) {
      throw new RobotDriverException("Problem while saving the file " + holdersFile.getAbsolutePath());
    }
    parentRobotDriver.readWasteHolder();
  }
View Full Code Here

          }
        }
        FileUtil.copy(origPath, backupFilePath);
      }
    } catch (IOException e) {
      throw new RobotDriverException("Problem during backup of file " + origPath);
    }
    return backupFilePath;
  }
View Full Code Here

TOP

Related Classes of mbj.robotdriver.RobotDriverException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.