Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/Exceptions/JobAlreadyExistsException.cs @ 6451

Last change on this file since 6451 was 6202, checked in by cneumuel, 14 years ago

#1233

  • stability fixes for slave
File size: 251 bytes
Line 
1using System;
2
3namespace HeuristicLab.Clients.Hive.SlaveCore {
4  class JobAlreadyExistsException : Exception {
5    public Guid JobId { get; set; }
6
7    public JobAlreadyExistsException(Guid jobId) {
8      this.JobId = jobId;
9    }
10  }
11}
Note: See TracBrowser for help on using the repository browser.