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