Yandex Mobile Ads
Loading...
Searching...
No Matches
AdError.cs
Go to the documentation of this file.
1/*
2 * This file is a part of the Yandex Advertising Network
3 *
4 * Version for Unity (C) 2023 YANDEX
5 *
6 * You may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at https://legal.yandex.com/partner_ch/
8 */
9
10using System;
11
13{
17 public class AdError
18 {
22 public string Message { get; private set; }
23
24 public AdError(string message)
25 {
26 this.Message = message;
27 }
28 }
29}
Represents error, that occurs when ad fails to perform action.
Definition AdError.cs:18
AdError(string message)
Definition AdError.cs:24
string Message
Message, describing reason of failure.
Definition AdError.cs:22