HomeSort by relevance Sort by last modified time
    Searched refs:DecoderException (Results 1 - 23 of 23) sorted by null

  /external/apache-http/src/org/apache/commons/codec/
DecoderException.java 23 * @version $Id: DecoderException.java,v 1.9 2004/02/29 04:08:31 tobrien Exp $
25 public class DecoderException extends Exception {
28 * Creates a DecoderException
32 public DecoderException(String pMessage) {
BinaryDecoder.java 35 * @throws DecoderException A decoder exception is thrown
39 byte[] decode(byte[] pArray) throws DecoderException;
Decoder.java 40 * this decode method will throw a DecoderException.
46 * @throws DecoderException a decoder exception can
52 Object decode(Object pObject) throws DecoderException;
StringDecoder.java 34 * @throws DecoderException thrown if there is
37 String decode(String pString) throws DecoderException;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java 3 public class DecoderException
8 DecoderException(String msg, Throwable cause)
Base64.java 109 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
132 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
Hex.java 107 throw new DecoderException("exception decoding Hex data: " + e.getMessage(), e);
129 throw new DecoderException("exception decoding Hex string: " + e.getMessage(), e);
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 21 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 Thrown if an odd number of characters is supplie
    [all...]
BinaryCodec.java 21 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");
Base64.java 21 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/
RFC1522Codec.java 21 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...]
BCodec.java 20 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 "
QuotedPrintableCodec.java 24 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...]
URLCodec.java 25 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 Thrown if URL decoding is unsuccessfu
    [all...]
QCodec.java 22 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/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /external/robolectric/lib/main/
commons-codec-1.6.jar 
  /frameworks/opt/vcard/java/com/android/vcard/
VCardUtils.java 47 * See org.apache.commons.codec.DecoderException
49 private static class DecoderException extends Exception {
50 public DecoderException(String pMessage) {
61 throws DecoderException {
73 throw new DecoderException("Invalid quoted-printable encoding");
77 throw new DecoderException("Invalid quoted-printable encoding");
806 } catch (DecoderException e) {
807 Log.e(LOG_TAG, "DecoderException is thrown.");
    [all...]
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 1280 milliseconds