summary refs log tree commit diff
path: root/crypto/src/tsp/TSPValidationException.cs
blob: 066a398e478dfff61c67df43ef67395e0d581d42 (plain) (blame)
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 Org.BouncyCastle.Tsp
{
	/**
	 * Exception thrown if a TSP request or response fails to validate.
	 * <p>
	 * If a failure code is associated with the exception it can be retrieved using
	 * the getFailureCode() method.</p>
	 */
#if !PORTABLE
    [Serializable]
#endif
    public class TspValidationException
		: TspException
	{
		private int failureCode;

		public TspValidationException(
			string message)
			: base(message)
		{
			this.failureCode = -1;
		}

		public TspValidationException(
			string	message,
			int		failureCode)
			: base(message)
		{
			this.failureCode = failureCode;
		}

		/**
		 * Return the failure code associated with this exception - if one is set.
		 *
		 * @return the failure code if set, -1 otherwise.
		 */
		public int FailureCode
		{
			get { return failureCode; }
		}
	}
}