/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/common/exceptions.vala

  • Committer: Gustav Hartvigsson
  • Date: 2021-09-15 17:10:52 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210915171052-yhdw16iyipyj5a5l
* Fixed Fastnumber's normalisation problem with the getters/setters

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
namespace VQDR {
 
1
namespace VQDR.Common {
2
2
  public errordomain ArgError {
3
3
    INVALID_ARGUMENT,
4
 
    INDEX_OUT_OF_BOUNDS;
 
4
    INDEX_OUT_OF_BOUNDS,
5
5
  }
6
6
  
7
 
  public errordomain OperandError {
8
 
    MISSING_OPERAND;
 
7
  public errordomain MathError {
 
8
    DIVIDE_BY_ZERO
9
9
  }
10
10
  
11
11
  public errordomain ParseError {
12
12
    INVALID_CHARECTER,
13
 
    NOT_READY,
14
 
    ALLREADY_PARSED,
15
 
    INVALID_DATA;
16
13
  }
17
14
  
18
15
  public errordomain EvaluationError {
19
16
    MISSING_TOKEN,
20
 
    INVALID_TOKEN;
21
 
  }
22
 
  
23
 
  public errordomain ParamError {
24
 
    OUT_OF_BOUNDS;
25
 
  }
26
 
 
27
 
  
28
 
  public errordomain  LoopError {
29
 
    TO_LONG,
30
 
    INFINITE;
31
 
  }
 
17
    INVALID_TOKEN,
 
18
  }
 
19
  
32
20
}