Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IapTelemetryException.cs 375B

123456789101112131415
  1. using System;
  2. namespace UnityEngine.Purchasing.Telemetry
  3. {
  4. class IapTelemetryException : Exception
  5. {
  6. public IapTelemetryException() { }
  7. public IapTelemetryException(string message)
  8. : base(message) { }
  9. public IapTelemetryException(string message, Exception innerException)
  10. : base(message, innerException) { }
  11. }
  12. }