-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathException.cs
108 lines (92 loc) · 2.4 KB
/
Exception.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using System;
namespace ti4_calc
{
class TI4CalculatorException : Exception
{
public TI4CalculatorException()
{
Console.WriteLine("TI4CalculatorException.");
}
public TI4CalculatorException(string message)
{
Console.WriteLine($"UnhandledException: {message}");
}
}
class CannotBuildWarSunException : TI4CalculatorException
{
public CannotBuildWarSunException()
{
Console.WriteLine($"CannotBuildWarSunException: Un-upgraded War Suns are not available to this faction.");
}
public CannotBuildWarSunException(string message)
{
Console.WriteLine($"CannotBuildWarSunException: {message}");
}
}
class CombatTypeException : TI4CalculatorException
{
public CombatTypeException()
{
Console.WriteLine($"CombatTypeException: Combat must take place in space or ground.");
}
public CombatTypeException(string message)
{
Console.WriteLine($"CombatTypeException: {message}");
}
}
class NoFactionMatchException : TI4CalculatorException
{
public NoFactionMatchException()
{
Console.WriteLine("NoFactionMatchException: The faction provided does not exist.");
}
public NoFactionMatchException(string message)
{
Console.WriteLine($"NoFactionMatchException: {message}");
}
}
class NoFleetException : TI4CalculatorException
{
public NoFleetException()
{
Console.WriteLine($"NoFleetException: Both players must have a fleet.");
}
public NoFleetException(string message)
{
Console.WriteLine($"NoFleetException: {message}");
}
}
class ReinforcementsException : TI4CalculatorException
{
public ReinforcementsException()
{
Console.WriteLine($"The requested number of ships is greater than the reinforcement supply.");
}
public ReinforcementsException(string message)
{
Console.WriteLine($"ReinforcementsException: {message}");
}
}
class SustainDamageException : TI4CalculatorException
{
public SustainDamageException()
{
Console.WriteLine($"SustainDamageException: Cannot destroy this unit while it can still sustain damage.");
}
public SustainDamageException(string message)
{
Console.WriteLine($"SustainDamageException: {message}");
}
}
class UnitTypeException : TI4CalculatorException
{
public UnitTypeException()
{
Console.WriteLine($"UnitTypeException: Unhandled unit type exception.");
}
public UnitTypeException(string message)
{
Console.WriteLine($"UnitTypeException: {message}");
}
}
}