using System; namespace PepperDash.Core.Intersystem.Serialization { /// /// Class to handle this specific exception type /// public class XSigSerializationException : Exception { /// /// default constructor /// public XSigSerializationException() { } /// /// constructor with message /// /// public XSigSerializationException(string message) : base(message) { } /// /// constructor with message and innner exception /// /// /// public XSigSerializationException(string message, Exception inner) : base(message, inner) { } } }