mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 07:14:58 +00:00
28 lines
847 B
C#
28 lines
847 B
C#
using System;
|
|
|
|
namespace PepperDash.Core.Intersystem.Serialization
|
|
{
|
|
/// <summary>
|
|
/// Class to handle this specific exception type
|
|
/// </summary>
|
|
public class XSigSerializationException : Exception
|
|
{
|
|
/// <summary>
|
|
/// default constructor
|
|
/// </summary>
|
|
public XSigSerializationException() { }
|
|
|
|
/// <summary>
|
|
/// constructor with message
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
public XSigSerializationException(string message) : base(message) { }
|
|
|
|
/// <summary>
|
|
/// constructor with message and innner exception
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <param name="inner"></param>
|
|
public XSigSerializationException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
} |