add all
This commit is contained in:
51
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tsp/TSPValidationException.cs
vendored
Normal file
51
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tsp/TSPValidationException.cs
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Tsp
|
||||
{
|
||||
/**
|
||||
* Exception thrown if a TSP request or response fails to validate.
|
||||
* <p>
|
||||
* If a failure code is associated with the exception it can be retrieved using
|
||||
* the getFailureCode() method.</p>
|
||||
*/
|
||||
[Serializable]
|
||||
public class TspValidationException
|
||||
: TspException
|
||||
{
|
||||
protected readonly int m_failureCode;
|
||||
|
||||
public TspValidationException(string message)
|
||||
: this(message, -1)
|
||||
{
|
||||
}
|
||||
|
||||
public TspValidationException(string message, int failureCode)
|
||||
: base(message)
|
||||
{
|
||||
m_failureCode = failureCode;
|
||||
}
|
||||
|
||||
protected TspValidationException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
m_failureCode = info.GetInt32("failureCode");
|
||||
}
|
||||
|
||||
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
base.GetObjectData(info, context);
|
||||
info.AddValue("failureCode", m_failureCode);
|
||||
}
|
||||
|
||||
/// <returns>The failure code associated with this exception, if one is set.</returns>
|
||||
public int FailureCode
|
||||
{
|
||||
get { return m_failureCode; }
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user