HomeSort by relevance Sort by last modified time
    Searched refs:EncoderException (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/sl4a/Common/src/org/apache/commons/codec/
EncoderException.java 26 * @version $Id: EncoderException.java 797804 2009-07-25 17:27:04Z ggregory $
28 public class EncoderException extends Exception {
43 public EncoderException() {
54 public EncoderException(String message) {
73 public EncoderException(String message, Throwable cause) {
87 public EncoderException(Throwable cause) {
BinaryEncoder.java 36 * @throws EncoderException thrown if the Encoder
40 byte[] encode(byte[] pArray) throws EncoderException;
Encoder.java 40 * @throws EncoderException an encoder exception is
44 Object encode(Object pObject) throws EncoderException;
  /external/apache-http/src/org/apache/commons/codec/
EncoderException.java 26 * @version $Id: EncoderException.java,v 1.10 2004/02/29 04:08:31 tobrien Exp $
33 public class EncoderException extends Exception {
40 public EncoderException(String pMessage) {
BinaryEncoder.java 40 * @throws EncoderException thrown if the Encoder
44 byte[] encode(byte[] pArray) throws EncoderException;
Encoder.java 44 * @throws EncoderException an encoder exception is
48 Object encode(Object pObject) throws EncoderException;
StringEncoder.java 39 * @throws EncoderException thrown if there is
42 String encode(String pString) throws EncoderException;
StringEncoderComparator.java 66 * If an {@link EncoderException} is encountered, return <code>0</code>.
82 catch (EncoderException ee) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
EncoderException.java 6 public class EncoderException
11 EncoderException(String msg, Throwable cause)
  /external/apache-http/src/org/apache/commons/codec/net/
BCodec.java 21 import org.apache.commons.codec.EncoderException;
81 protected byte[] doEncoding(byte[] bytes) throws EncoderException {
104 * @throws EncoderException
107 public String encode(final String value, final String charset) throws EncoderException {
114 throw new EncoderException(e.getMessage());
125 * @throws EncoderException
128 public String encode(String value) throws EncoderException {
165 * @throws EncoderException
168 public Object encode(Object value) throws EncoderException {
174 throw new EncoderException("Objects of type
    [all...]
RFC1522Codec.java 22 import org.apache.commons.codec.EncoderException;
63 * @throws EncoderException thrown if there is an error conidition during the Encoding
71 throws EncoderException, UnsupportedEncodingException
150 * @throws EncoderException thrown if the Encoder encounters a failure condition
153 protected abstract byte[] doEncoding(byte[] bytes) throws EncoderException;
QuotedPrintableCodec.java 25 import org.apache.commons.codec.EncoderException;
250 * @throws EncoderException
255 public String encode(String pString) throws EncoderException {
262 throw new EncoderException(e.getMessage());
317 * @throws EncoderException
321 public Object encode(Object pObject) throws EncoderException {
329 throw new EncoderException("Objects of type "
URLCodec.java 26 import org.apache.commons.codec.EncoderException;
241 * @throws EncoderException Thrown if URL encoding is unsuccessful
245 public String encode(String pString) throws EncoderException {
252 throw new EncoderException(e.getMessage());
307 * @throws EncoderException Thrown if URL encoding is not
311 public Object encode(Object pObject) throws EncoderException {
319 throw new EncoderException("Objects of type " +
QCodec.java 23 import org.apache.commons.codec.EncoderException;
137 protected byte[] doEncoding(byte[] bytes) throws EncoderException {
187 * @throws EncoderException
190 public String encode(final String pString, final String charset) throws EncoderException {
197 throw new EncoderException(e.getMessage());
208 * @throws EncoderException
211 public String encode(String pString) throws EncoderException {
248 * @throws EncoderException
251 public Object encode(Object pObject) throws EncoderException {
257 throw new EncoderException("Objects of type
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 19 import org.apache.commons.codec.EncoderException;
99 * @throws EncoderException
103 public int difference(String s1, String s2) throws EncoderException {
110 * and will throw an EncoderException if the supplied object is not of type
117 * @throws EncoderException
120 public Object encode(Object pObject) throws EncoderException {
122 throw new EncoderException("Parameter supplied to RefinedSoundex encode is not of type java.lang.String");
Soundex.java 19 import org.apache.commons.codec.EncoderException;
81 * @throws EncoderException
85 public int difference(String s1, String s2) throws EncoderException {
128 * the Encoder interface, and will throw an EncoderException if the supplied object is not of type java.lang.String.
134 * @throws EncoderException
139 public Object encode(Object pObject) throws EncoderException {
141 throw new EncoderException("Parameter supplied to Soundex encode is not of type java.lang.String");
SoundexUtils.java 19 import org.apache.commons.codec.EncoderException;
85 * @throws EncoderException
88 static int difference(StringEncoder encoder, String s1, String s2) throws EncoderException {
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 22 import org.apache.commons.codec.EncoderException;
184 * @throws EncoderException Thrown if the given object is not a String or byte[]
187 public Object encode(Object object) throws EncoderException {
192 throw new EncoderException(e.getMessage());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar 
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.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 

Completed in 1866 milliseconds

1 2 3