Back to project page glvideoplayer-android.
The source code is released under:
Apache License
If you think the Android project glvideoplayer-android 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 net.binzume.android.nicovideo.webapi; //from w w w.jav a 2 s . c o m @SuppressWarnings("serial") public class PaymentRequiredException extends WebApiException { public final int price; public final int availablePoint; public PaymentRequiredException(String message, int price, int availablePoint) { super(PAYMENT_REQUIRED, message); this.price = price; this.availablePoint = availablePoint; } }