Click here to Skip to main content
15,885,767 members
Articles / Mobile Apps / Android

Drupal with Android integration: Make posts and upload photos. Part II - Android

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
13 Mar 2013CPOL6 min read 18.1K   6  
This is part II of the article series on Drupal and Android integration.
/*
    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;

/**
 *  Exception thrown by the XML-RPC library in case of a fault response. The
 *  exception is thrown only if the call was successfully made but the response
 *  contained a fault message. If a call could not be made due to a local
 *  problem (if an argument could not be serialized or if there was a network
 *  problem) an XmlRpcException is thrown instead.
 *
 *  @author  Greger Olsson
 */

public class XmlRpcFault extends Exception
{
    /**
     *  Creates a new exception with the supplied message and error code.
     *  The message and error code values are those returned from the remote
     *  XML-RPC service.
     *
     *  @param message The exception message.
     */

    public XmlRpcFault( int errorCode, String message )
    {
        super( message );
        this.errorCode = errorCode;
    }


    /**
     *  Returns the error code reported by the remote XML-RPC service.
     * 
     *  @return the error code reported by the XML-RPC service.
     */
    
    public int getErrorCode()
    {
        return errorCode;
    }

    
    /** The exception error code. See XML-RPC specification. */
    public final int errorCode;
    
    /** Serial version UID. */
    private static final long serialVersionUID = 3257566200450856503L;
}

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