Searched refs:DecoderException (Results 1 - 13 of 13) sorted by relevance

/external/apache-http/src/org/apache/commons/codec/
H A DDecoderException.java23 * @version $Id: DecoderException.java,v 1.9 2004/02/29 04:08:31 tobrien Exp $
25 public class DecoderException extends Exception { class in inherits:Exception
28 * Creates a DecoderException
32 public DecoderException(String pMessage) { method in class:DecoderException
H A DBinaryDecoder.java35 * @throws DecoderException A decoder exception is thrown
39 byte[] decode(byte[] pArray) throws DecoderException;
H A DDecoder.java40 * this decode method will throw a DecoderException.
46 * @throws DecoderException a decoder exception can
52 Object decode(Object pObject) throws DecoderException;
H A DStringDecoder.java34 * @throws DecoderException thrown if there is
37 String decode(String pString) throws DecoderException;
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java21 import org.apache.commons.codec.DecoderException;
51 * @throws DecoderException Thrown if an odd number or illegal of characters
54 public static byte[] decodeHex(char[] data) throws DecoderException {
59 throw new DecoderException("Odd number of characters.");
82 * @throws DecoderException Thrown if ch is an illegal hex character
84 protected static int toDigit(char ch, int index) throws DecoderException {
87 throw new DecoderException("Illegal hexadecimal charcter " + ch + " at index " + index);
126 * @throws DecoderException Thrown if an odd number of characters is supplied
130 public byte[] decode(byte[] array) throws DecoderException {
144 * @throws DecoderException Throw
[all...]
H A DBinaryCodec.java21 import org.apache.commons.codec.DecoderException;
107 * @throws DecoderException
111 public Object decode(Object ascii) throws DecoderException {
124 throw new DecoderException("argument not a byte array");
H A DBase64.java21 import org.apache.commons.codec.DecoderException;
196 * Decoder interface, and will throw a DecoderException if the
202 * @throws DecoderException if the parameter supplied is not
205 public Object decode(Object pObject) throws DecoderException {
207 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]");
/external/apache-http/src/org/apache/commons/codec/net/
H A DRFC1522Codec.java21 import org.apache.commons.codec.DecoderException;
90 * @throws DecoderException thrown if there is an error conidition during the Decoding
96 throws DecoderException, UnsupportedEncodingException
102 throw new DecoderException("RFC 1522 violation: malformed encoded content");
108 throw new DecoderException("RFC 1522 violation: charset token not found");
112 throw new DecoderException("RFC 1522 violation: charset not specified");
117 throw new DecoderException("RFC 1522 violation: encoding token not found");
121 throw new DecoderException("This codec cannot decode " +
157 * @throws DecoderException A decoder exception is thrown if a Decoder encounters a
160 protected abstract byte[] doDecoding(byte[] bytes) throws DecoderException;
[all...]
H A DBCodec.java20 import org.apache.commons.codec.DecoderException;
83 protected byte[] doDecoding(byte[] bytes) throws DecoderException {
139 * @throws DecoderException
142 public String decode(String value) throws DecoderException {
149 throw new DecoderException(e.getMessage());
184 * @throws DecoderException
187 public Object decode(Object value) throws DecoderException {
193 throw new DecoderException("Objects of type "
H A DQuotedPrintableCodec.java24 import org.apache.commons.codec.DecoderException;
170 * @throws DecoderException
173 public static final byte[] decodeQuotedPrintable(byte[] bytes) throws DecoderException {
185 throw new DecoderException("Invalid quoted-printable encoding");
189 throw new DecoderException("Invalid quoted-printable encoding");
226 * @throws DecoderException
229 public byte[] decode(byte[] bytes) throws DecoderException {
270 * @throws DecoderException
275 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException {
289 * @throws DecoderException
[all...]
H A DURLCodec.java25 import org.apache.commons.codec.DecoderException;
152 * @throws DecoderException Thrown if URL decoding is unsuccessful
155 throws DecoderException
170 throw new DecoderException("Invalid URL encoding");
174 throw new DecoderException("Invalid URL encoding");
203 * @throws DecoderException Thrown if URL decoding is unsuccessful
205 public byte[] decode(byte[] bytes) throws DecoderException {
260 * @throws DecoderException Thrown if URL decoding is unsuccessful
265 throws DecoderException, UnsupportedEncodingException
281 * @throws DecoderException Throw
[all...]
H A DQCodec.java22 import org.apache.commons.codec.DecoderException;
147 protected byte[] doDecoding(byte[] bytes) throws DecoderException {
222 * @throws DecoderException
225 public String decode(String pString) throws DecoderException {
232 throw new DecoderException(e.getMessage());
267 * @throws DecoderException
270 public Object decode(Object pObject) throws DecoderException {
276 throw new DecoderException("Objects of type "
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 131 milliseconds