Class URIException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.sling.api.SlingException
org.apache.sling.resourceresolver.impl.helper.URIException
- All Implemented Interfaces:
Serializable
The URI parsing and escape encoding exception.
This class is a slightly modified version of the URIException class
distributed with Http Client 3.1. The changes are removal of deprecated
methods and have the class itself extend the SlingException
to
adapt it to the exception hierarchy of Sling.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The URI escape encoding and decoding error.static final int
The URI parsing error.static final int
The DNS punycode encoding or decoding error.protected String
The reason message.protected int
The reason code.static final int
No specified reason code.static final int
The unsupported character encoding. -
Constructor Summary
ConstructorDescriptionDefault constructor.URIException
(int reasonCode) The constructor with a reason code argument.URIException
(int reasonCode, String reason) The constructor with a reason string and its code arguments.URIException
(String reason) The constructor with a reason string argument. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
UNKNOWN
public static final int UNKNOWNNo specified reason code.- See Also:
-
PARSING
public static final int PARSINGThe URI parsing error.- See Also:
-
UNSUPPORTED_ENCODING
public static final int UNSUPPORTED_ENCODINGThe unsupported character encoding.- See Also:
-
ESCAPING
public static final int ESCAPINGThe URI escape encoding and decoding error.- See Also:
-
PUNYCODE
public static final int PUNYCODEThe DNS punycode encoding or decoding error.- See Also:
-
reasonCode
protected int reasonCodeThe reason code. -
reason
The reason message.
-
-
Constructor Details
-
URIException
public URIException()Default constructor. -
URIException
public URIException(int reasonCode) The constructor with a reason code argument.- Parameters:
reasonCode
- the reason code
-
URIException
The constructor with a reason string and its code arguments.- Parameters:
reasonCode
- the reason codereason
- the reason
-
URIException
The constructor with a reason string argument.- Parameters:
reason
- the reason
-
-
Method Details
-
getReasonCode
public int getReasonCode()Get the reason code.- Returns:
- the reason code
-