001package com.intentsoftware.addapptr;
002
003/**
004 * Error indicating why the banner request has failed.
005 */
006@SuppressWarnings("WeakerAccess")
007public final class BannerRequestError {
008    private final String message;
009
010    BannerRequestError(String message) {
011        this.message = message;
012    }
013
014    /**
015     * Returns the description of failure.
016     * @return The string describing the reason of request failure.
017     */
018    public String getMessage() {
019        return message;
020    }
021
022}