-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFactoryUtilitiesException.cs
57 lines (49 loc) · 1.81 KB
/
FactoryUtilitiesException.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
//-----------------------------------------------------------------------
// <copyright file="FactoryUtilitiesException.cs" company="Studio A&T s.r.l.">
// Copyright (c) Studio A&T s.r.l. All rights reserved.
// </copyright>
// <author>nicogis</author>
//-----------------------------------------------------------------------
namespace Studioat.ArcGis.Soe.Rest.FactoryUtilities
{
using System;
using System.Runtime.Serialization;
/// <summary>
/// class UtilitiesException Exception
/// </summary>
[Serializable]
public class FactoryUtilitiesException : Exception
{
/// <summary>
/// Initializes a new instance of the UtilitiesException class
/// </summary>
public FactoryUtilitiesException() : base()
{
}
/// <summary>
/// Initializes a new instance of the UtilitiesException class
/// </summary>
/// <param name="message">message error</param>
public FactoryUtilitiesException(string message)
: base(message)
{
}
/// <summary>
/// Initializes a new instance of the UtilitiesException class
/// </summary>
/// <param name="message">message error</param>
/// <param name="innerException">object Exception</param>
public FactoryUtilitiesException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// Initializes a new instance of the UtilitiesException class
/// </summary>
/// <param name="info">object SerializationInfo</param>
/// <param name="context">object StreamingContext</param>
protected FactoryUtilitiesException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}