Java org.apache.commons.httpclient URIException fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.httpclient URIException fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.httpclient URIException.

The text is from its open source code.

Field

intUNSUPPORTED_ENCODING
The unsupported character encoding.

Constructor

URIException(int reasonCode)
The constructor with a reason code argument.
URIException(String reason)
The constructor with a reason string argument.
URIException(int reasonCode, String reason)
The constructor with a reason string and its code arguments.
URIException()
Default constructor.

Method

ClassgetClass()
Returns the runtime class of this Object .
StringgetLocalizedMessage()
Creates a localized description of this throwable.
StringgetMessage()
Returns the detail message string of this throwable.
StringgetReason()
Get the reason message.
intgetReasonCode()
Get the reason code.
StackTraceElement[]getStackTrace()
Provides programmatic access to the stack trace information printed by #printStackTrace() .
ThrowableinitCause(Throwable cause)
Initializes the cause of this throwable to the specified value.
voidprintStackTrace()
Print this HttpException and its stack trace to the standard error stream.
voidprintStackTrace(PrintStream s)
Print this HttpException and its stack trace to the specified print stream.
StringtoString()
Returns a short description of this throwable.