lib_unity_purchase/Runtime/Purchasing/Telemetry/IapTelemetryException.cs

16 lines
375 B
C#
Raw Normal View History

2024-01-29 18:49:33 +08:00
using System;
namespace UnityEngine.Purchasing.Telemetry
{
class IapTelemetryException : Exception
{
public IapTelemetryException() { }
public IapTelemetryException(string message)
: base(message) { }
public IapTelemetryException(string message, Exception innerException)
: base(message, innerException) { }
}
}