Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/Exceptions/JobNotFoundException.cs @ 5786

Last change on this file since 5786 was 5786, checked in by cneumuel, 13 years ago

#1233

  • implemented correct numbering of BatchRuns
  • improvements in ExperimentManager
  • fixed bug in server (jobs were scheduled multiple times)
  • added exception handling for task in slave
  • improved timeout handling of jobs (LifecycleManager)
File size: 241 bytes
Line 
1using System;
2
3namespace HeuristicLab.Clients.Hive.SlaveCore {
4  public class JobNotFoundException : Exception {
5    public JobNotFoundException(Guid jobId) : base (string.Format("Job with Id {0} was not found.", jobId)) { }
6  }
7}
Note: See TracBrowser for help on using the repository browser.