SquareDash/Library/PackageCache/com.unity.services.mediation@1.0.5/Runtime/Api/Public/ShowFailedException.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

21 lines
506 B
C#

using System;
namespace Unity.Services.Mediation
{
/// <summary>
/// The exception returned when Mediation show fails.
/// </summary>
public class ShowFailedException : Exception
{
/// <summary>
/// Accompanying error enum instance to this show exception.
/// </summary>
public ShowError ShowError;
internal ShowFailedException(ShowError showError, string message) : base(message)
{
ShowError = showError;
}
}
}