Add project
Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
This commit is contained in:
25
Hcs.Client/GostXades/XadesBesValidationException.cs
Normal file
25
Hcs.Client/GostXades/XadesBesValidationException.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Hcs.GostXades
|
||||
{
|
||||
[Serializable]
|
||||
public class XadesBesValidationException : Exception
|
||||
{
|
||||
public XadesBesValidationException()
|
||||
{
|
||||
}
|
||||
|
||||
public XadesBesValidationException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public XadesBesValidationException(string message, Exception inner) : base(message, inner)
|
||||
{
|
||||
}
|
||||
|
||||
protected XadesBesValidationException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user