Back to project page One-Button-App---Android.
The source code is released under:
Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (...
If you think the Android project One-Button-App---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 org.xmlrpc.android; /*from w ww.ja v a 2 s. c o m*/ public class XMLRPCException extends Exception { /** * */ private static final long serialVersionUID = 7499675036625522379L; public XMLRPCException(Exception e) { super(e); } public XMLRPCException(String string) { super(string); } }