org.xins.common.text
Class NonASCIIException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.xins.common.text.NonASCIIException
All Implemented Interfaces:
Serializable

Deprecated. Deprecated since XINS 1.4.0. No longer thrown as URLEncoding supports Unicode.

public final class NonASCIIException
extends RuntimeException

Exception thrown when a character was found that was not a 7-bit ASCII character where not allowed.

Since:
XINS 1.0.0
Version:
$Revision: 1.11 $ $Date: 2006/08/28 09:12:31 $
Author:
Ernst de Haan
See Also:
Serialized Form

Constructor Summary
NonASCIIException(char c)
          Deprecated. Constructs a NonASCIIException.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NonASCIIException

public NonASCIIException(char c)
                  throws IllegalArgumentException
Deprecated. 
Constructs a NonASCIIException.

Parameters:
c - the found character, must be > 127.
Throws:
IllegalArgumentException - if c <= 127.


See http://www.xins.org/.