12345678910111213141516171819202122232425262728 |
- using System;
-
- namespace UnityEngine.Purchasing.Security
- {
- /// <summary>
- /// A base exception for IAP Security issues.
- /// </summary>
- public class IAPSecurityException : Exception
- {
- /// <summary>
- /// Constructs an instance with no message.
- /// </summary>
- public IAPSecurityException() { }
-
- /// <summary>
- /// Constructs an instance with a message.
- /// </summary>
- /// <param name="message"> The message that describes the error. </param>
- public IAPSecurityException(string message) : base(message)
- {
- }
- }
-
- /// <summary>
- /// An exception for an invalid IAP Security signature.
- /// </summary>
- public class InvalidSignatureException : IAPSecurityException { }
- }
|