Click here to Skip to main content
15,886,199 members
Articles / Mobile Apps / Android

Drupal with Android Integration: Make Posts and Upload Photos - Part I - Drupal

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
13 Mar 2013CPOL4 min read 30.5K   167   5  
Make posts and upload photos
/*
    Copyright (c) 2005 Redstone Handelsbolag

    This library is free software; you can redistribute it and/or modify it under the terms
    of the GNU Lesser General Public License as published by the Free Software Foundation;
    either version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
    without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License along with this
    library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
    Boston, MA  02111-1307  USA
*/

package redstone.xmlrpc;

/**
 *  The exception thrown by the XML-RPC library in case of serialization or
 *  network problems. If a call is successfully made but the remote XML-RPC service
 *  returns a fault message, an XmlRpcFault exception will be thrown.
 *
 *  @author Greger Olsson
 */

public class XmlRpcException extends RuntimeException
{
    /**
     *  Creates a new exception with the supplied message.
     *
     *  @param message The exception message.
     */

    public XmlRpcException( String message )
    {
        super( message );
    }

    
    /**
     *  Creates a new exception with the supplied message.
     *  The supplied cause will be attached to the exception.
     *  
     *  @param message The error message.
     *  @param cause The original cause leading to the exception.
     */

    public XmlRpcException( String message, Throwable cause )
    {
        super( message, cause );
    }

    
    /** <describe> */
    private static final long serialVersionUID = 3257844394139596598L;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO BitGriff LLC
Russian Federation Russian Federation
My name is Andrey Moskvichev.

I'm a software developer with more than 14 years of programming experience.

I specialize in networking, Unix systems (Linux, FreeBSD), mobile programming, computer graphics, software architecture, reverse engineering, data processing systems, AI, computer vision.

I'm interested in all new cutting edge technologies.

Comments and Discussions