Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project android-sdk 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 com.bitpay.sdk.controller; //w w w.j av a 2 s . c om public class BitPayException extends Exception { public BitPayException(String message) { super(message); } private static final long serialVersionUID = 1L; public BitPayException(String s, Exception e) { super(s, e); } }