Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Events/IEventException.cs @ 13777

Last change on this file since 13777 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 691 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Events
4{
5  /// <summary>
6  /// An integer indicating the type of error generated.
7  /// </summary>
8  public enum EventExceptionCode
9  {
10    /// <summary>
11    /// If the <see cref="IEvent.Type">IEvent.Type</see> was not specified
12    /// by initializing the event before the method was called.
13    /// Specification of the <see cref="IEvent.Type">IEvent.Type</see> as
14    /// <c>null</c> or an empty string will also trigger this exception.
15    /// </summary>
16    UnspecifiedEventTypeErr,
17   
18    /// <summary>
19    /// If the <see cref="IEvent">IEvent</see> object is already
20    /// dispatched in the tree.
21    /// </summary>
22    DispatchRequestErr,
23  }
24}
Note: See TracBrowser for help on using the repository browser.