Searched refs:EncoderException (Results 1 - 19 of 19) sorted by relevance

/external/apache-http/src/org/apache/commons/codec/
H A DEncoderException.java26 * @version $Id: EncoderException.java,v 1.10 2004/02/29 04:08:31 tobrien Exp $
28 public class EncoderException extends Exception { class in inherits:Exception
35 public EncoderException(String pMessage) { method in class:EncoderException
H A DBinaryEncoder.java35 * @throws EncoderException thrown if the Encoder
39 byte[] encode(byte[] pArray) throws EncoderException;
H A DEncoder.java39 * @throws EncoderException an encoder exception is
43 Object encode(Object pObject) throws EncoderException;
H A DStringEncoder.java34 * @throws EncoderException thrown if there is
37 String encode(String pString) throws EncoderException;
H A DStringEncoderComparator.java61 * If an {@link EncoderException} is encountered, return <code>0</code>.
77 catch (EncoderException ee) {
/external/apache-http/src/org/apache/commons/codec/net/
H A DBCodec.java21 import org.apache.commons.codec.EncoderException;
76 protected byte[] doEncoding(byte[] bytes) throws EncoderException {
99 * @throws EncoderException
102 public String encode(final String value, final String charset) throws EncoderException {
109 throw new EncoderException(e.getMessage());
120 * @throws EncoderException
123 public String encode(String value) throws EncoderException {
160 * @throws EncoderException
163 public Object encode(Object value) throws EncoderException {
169 throw new EncoderException("Object
[all...]
H A DRFC1522Codec.java22 import org.apache.commons.codec.EncoderException;
58 * @throws EncoderException thrown if there is an error conidition during the Encoding
66 throws EncoderException, UnsupportedEncodingException
145 * @throws EncoderException thrown if the Encoder encounters a failure condition
148 protected abstract byte[] doEncoding(byte[] bytes) throws EncoderException;
H A DQuotedPrintableCodec.java25 import org.apache.commons.codec.EncoderException;
245 * @throws EncoderException
250 public String encode(String pString) throws EncoderException {
257 throw new EncoderException(e.getMessage());
312 * @throws EncoderException
316 public Object encode(Object pObject) throws EncoderException {
324 throw new EncoderException("Objects of type "
H A DURLCodec.java26 import org.apache.commons.codec.EncoderException;
236 * @throws EncoderException Thrown if URL encoding is unsuccessful
240 public String encode(String pString) throws EncoderException {
247 throw new EncoderException(e.getMessage());
302 * @throws EncoderException Thrown if URL encoding is not
306 public Object encode(Object pObject) throws EncoderException {
314 throw new EncoderException("Objects of type " +
H A DQCodec.java23 import org.apache.commons.codec.EncoderException;
132 protected byte[] doEncoding(byte[] bytes) throws EncoderException {
182 * @throws EncoderException
185 public String encode(final String pString, final String charset) throws EncoderException {
192 throw new EncoderException(e.getMessage());
203 * @throws EncoderException
206 public String encode(String pString) throws EncoderException {
243 * @throws EncoderException
246 public Object encode(Object pObject) throws EncoderException {
252 throw new EncoderException("Object
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java19 import org.apache.commons.codec.EncoderException;
94 * @throws EncoderException
98 public int difference(String s1, String s2) throws EncoderException {
105 * and will throw an EncoderException if the supplied object is not of type
112 * @throws EncoderException
115 public Object encode(Object pObject) throws EncoderException {
117 throw new EncoderException("Parameter supplied to RefinedSoundex encode is not of type java.lang.String");
H A DSoundex.java19 import org.apache.commons.codec.EncoderException;
76 * @throws EncoderException
80 public int difference(String s1, String s2) throws EncoderException {
123 * the Encoder interface, and will throw an EncoderException if the supplied object is not of type java.lang.String.
129 * @throws EncoderException
134 public Object encode(Object pObject) throws EncoderException {
136 throw new EncoderException("Parameter supplied to Soundex encode is not of type java.lang.String");
H A DSoundexUtils.java19 import org.apache.commons.codec.EncoderException;
80 * @throws EncoderException
83 static int difference(StringEncoder encoder, String s1, String s2) throws EncoderException {
H A DMetaphone.java19 import org.apache.commons.codec.EncoderException;
349 * Encoder interface, and will throw an EncoderException if the
355 * @throws EncoderException if the parameter supplied is not
358 public Object encode(Object pObject) throws EncoderException {
360 throw new EncoderException("Parameter supplied to Metaphone encode is not of type java.lang.String");
H A DDoubleMetaphone.java19 import org.apache.commons.codec.EncoderException;
198 * @throws EncoderException encode parameter is not of type String
200 public Object encode(Object obj) throws EncoderException {
202 throw new EncoderException("DoubleMetaphone encode parameter is not of type String");
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java22 import org.apache.commons.codec.EncoderException;
179 * @throws EncoderException Thrown if the given object is not a String or byte[]
182 public Object encode(Object object) throws EncoderException {
187 throw new EncoderException(e.getMessage());
H A DBinaryCodec.java22 import org.apache.commons.codec.EncoderException;
90 * @throws EncoderException
94 public Object encode(Object raw) throws EncoderException {
96 throw new EncoderException("argument not a byte array");
H A DBase64.java22 import org.apache.commons.codec.EncoderException;
496 * Encoder interface, and will throw an EncoderException if the
502 * @throws EncoderException if the parameter supplied is not
505 public Object encode(Object pObject) throws EncoderException {
507 throw new EncoderException(
/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 99 milliseconds