Back to project page AIRShare.
The source code is released under:
Apache License
If you think the Android project AIRShare 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.ggt.airshare.urlshortener; // www . j a v a 2 s . c om /** * Exception from google url shortener service. * * @author gduche */ public class UrlShortenerException extends Exception { private static final long serialVersionUID = 6087218793856704661L; public UrlShortenerException(String message) { super(message); } }