/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/utils/exceptions.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-05-29 11:02:34 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220529110234-3oojizzdgmbrctv4
Woops again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
namespace VQDR.Common {
 
1
namespace Utils {
2
2
  public errordomain ArgError {
3
3
    INVALID_ARGUMENT,
4
4
    INDEX_OUT_OF_BOUNDS,
16
16
    MISSING_TOKEN,
17
17
    INVALID_TOKEN,
18
18
  }
 
19
 
 
20
  public errordomain ParamError {
 
21
    OUT_OF_BOUNDS
 
22
  }
 
23
 
 
24
  public errordomain  LoopError {
 
25
    TO_LONG,
 
26
    INFINITE
 
27
  }
19
28
  
20
29
}