Back to project page snappyfrog.
The source code is released under:
Apache License
If you think the Android project snappyfrog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.robovm.bindings.admob; /*from w w w. j ava 2 s. c o m*/ import org.robovm.apple.foundation.NSError; import org.robovm.objc.annotation.NativeClass; /** This class represents the error generated due to invalid request parameters. */ @NativeClass public class GADRequestError extends NSError { /** Google AdMob Ads error domain. */ public static String errorDomain () { return GADRequestErrorConstants.errorDomain(); } private GADRequestError () { } public GADErrorCode getErrorCode () { long code = code(); if (code >= 0 && code < GADErrorCode.values().length) { return GADErrorCode.values()[(int)code]; } return null; } }