Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Exceptions/ResourceNotFoundException.cs @ 6167

Last change on this file since 6167 was 5458, checked in by cneumuel, 14 years ago

#1233

  • removed GetConfigurationFile from service -> configuration is now submitted as a plugin with one file (the configuration file)
  • resource ids are now checked before uploading a hive experiment, only valid resource names are accepted
  • added SharpZipLib License to ConsoleClient project, so dependecies are satisfied
File size: 272 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Clients.Hive {
7  public class ResourceNotFoundException : Exception {
8    public ResourceNotFoundException(string message) : base(message) { }
9  }
10}
Note: See TracBrowser for help on using the repository browser.