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