Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MyTargetAdError.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd7014e1a5704a05ddabe0e46cf3eda90b13e36c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.mapswithme.maps.ads;

import android.support.annotation.Nullable;


class MyTargetAdError implements NativeAdError
{
  @Nullable
  private final String mMessage;

  MyTargetAdError(@Nullable String message)
  {
    mMessage = message;
  }

  @Nullable
  @Override
  public String getMessage()
  {
    return mMessage;
  }

  @Override
  public int getCode()
  {
    return 0;
  }
}