-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathUriTemplateException.cs
36 lines (34 loc) · 1.01 KB
/
UriTemplateException.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
using System;
namespace KubeClient.Http
{
/// <summary>
/// Exception raised when a <see cref="UriTemplate"/> is invalid or is missing required information.
/// </summary>
public class UriTemplateException
: KubeClientException
{
/// <summary>
/// Create a new <see cref="UriTemplateException"/>.
/// </summary>
/// <param name="message">
/// The exception message.
/// </param>
public UriTemplateException(string message)
: base(message)
{
}
/// <summary>
/// Create a new <see cref="UriTemplateException"/>.
/// </summary>
/// <param name="innerException">
/// The exception that caused this exception to be raised.
/// </param>
/// <param name="message">
/// The exception message.
/// </param>
public UriTemplateException(Exception innerException, string message)
: base(message, innerException)
{
}
}
}