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: 811b544a4897df0912ae3abbbbe7d10e83f20e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.ads;

import androidx.annotation.Nullable;

public interface NativeAdError
{
  @Nullable
  String getMessage();

  int getCode();
}