-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathExceptions.cs
More file actions
44 lines (36 loc) · 1.29 KB
/
Exceptions.cs
File metadata and controls
44 lines (36 loc) · 1.29 KB
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
using System;
namespace TestStack.FluentMVCTesting
{
public class TempDataAssertionException : Exception
{
public TempDataAssertionException(string message) : base(message) { }
}
public class ActionResultAssertionException : Exception
{
public ActionResultAssertionException(string message) : base(message) { }
}
public class ViewResultModelAssertionException : Exception
{
public ViewResultModelAssertionException(string message) : base(message) { }
}
public class ModelErrorAssertionException : Exception
{
public ModelErrorAssertionException(string message) : base(message) { }
}
public class InvalidControllerActionException : Exception
{
public InvalidControllerActionException(string message) : base(message) { }
}
public class InvalidRouteValueException : Exception
{
public InvalidRouteValueException(string message) : base(message) { }
}
public class MissingRouteValueException : Exception
{
public MissingRouteValueException(string message) : base(message) { }
}
public class ValueTypeMismatchException : Exception
{
public ValueTypeMismatchException(string message) : base(message) { }
}
}