source:
trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/Exceptions/JobAlreadyExistsException.cs
@
8541
Last change on this file since 8541 was 6983, checked in by ascheibe, 13 years ago | |
---|---|
File size: 251 bytes |
Rev | Line | |
---|---|---|
[6983] | 1 | using System; |
2 | ||
3 | namespace 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.