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

NativeAdError.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6c7fe404f4e1fca8cc60f8d199a800f3910aa1c (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.ads;

import android.support.annotation.Nullable;

public interface NativeAdError
{
  @Nullable
  String getMessage();

  int getCode();
}