public class

UnprocessableEntityException

extends ServiceException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.google.gdata.util.ServiceException
         ↳ com.google.gdata.util.UnprocessableEntityException

Class Overview

The UnprocessableEntityException is thrown by a service provider when it receives a request that it understands but where processing the request will leave resources in an inconsistent state. For example, a PATCH request that removes required fields could not be processed without making the target resource invalid.

Summary

[Expand]
Inherited Constants
From class java.lang.Exception
From class java.lang.Throwable
[Expand]
Inherited Fields
From class com.google.gdata.util.ServiceException
From class java.lang.Throwable
Public Constructors
UnprocessableEntityException(String message)
UnprocessableEntityException(String message, Throwable cause)
UnprocessableEntityException(Throwable cause)
UnprocessableEntityException(HttpURLConnection httpConn)
UnprocessableEntityException(ErrorContent errorCode)
UnprocessableEntityException(ErrorContent errorCode, Throwable cause)
[Expand]
Inherited Methods
From class com.google.gdata.util.ServiceException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UnprocessableEntityException (String message)

Parameters
message

public UnprocessableEntityException (String message, Throwable cause)

Parameters
message
cause

public UnprocessableEntityException (Throwable cause)

Parameters
cause

public UnprocessableEntityException (HttpURLConnection httpConn)

Parameters
httpConn
Throws
IOException

public UnprocessableEntityException (ErrorContent errorCode)

Parameters
errorCode

public UnprocessableEntityException (ErrorContent errorCode, Throwable cause)

Parameters
errorCode
cause