Class AdError
java.lang.Object
com.codename1.ads.AdError
Describes a failure delivered to
AdListener.onFailedToLoad(AdError) or
AdListener.onShowFailed(AdError). The numeric getCode() and getDomain()
are provider specific (e.g. the underlying SDK error code), while getMessage()
is a human readable description.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intGeneric internal error code.static final intError code used when the request was rejected as invalid (e.g. a bad ad unit id).static final intError code used when the network was unavailable.static final intError code used when no ad was available to fill the request.static final intError code used when no ad provider is installed or the format is unsupported. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
CODE_NO_FILL
public static final int CODE_NO_FILLError code used when no ad was available to fill the request.- See Also:
-
CODE_NETWORK_ERROR
public static final int CODE_NETWORK_ERRORError code used when the network was unavailable.- See Also:
-
CODE_INVALID_REQUEST
public static final int CODE_INVALID_REQUESTError code used when the request was rejected as invalid (e.g. a bad ad unit id).- See Also:
-
CODE_UNSUPPORTED
public static final int CODE_UNSUPPORTEDError code used when no ad provider is installed or the format is unsupported.- See Also:
-
CODE_INTERNAL
public static final int CODE_INTERNALGeneric internal error code.- See Also:
-
-
Constructor Details
-
AdError
-
-
Method Details
-
getCode
public int getCode()The provider specific numeric error code. -
getDomain
The provider specific error domain, may be null. -
getMessage
A human readable description of the failure. -
toString
Description copied from class:ObjectReturns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method. The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of: getClass().getName() + '@' + Integer.toHexString(hashCode())
-