01: package com.healthmarketscience.jackcess.scsu;
02:
03: /**
04: * This sample software accompanies Unicode Technical Report #6 and
05: * distributed as is by Unicode, Inc., subject to the following:
06: *
07: * Copyright 1996-1997 Unicode, Inc.. All Rights Reserved.
08: *
09: * Permission to use, copy, modify, and distribute this software
10: * without fee is hereby granted provided that this copyright notice
11: * appears in all copies.
12: *
13: * UNICODE, INC. MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
14: * SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING
15: * BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
16: * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
17: * UNICODE, INC., SHALL NOT BE LIABLE FOR ANY ERRORS OR OMISSIONS, AND
18: * SHALL NOT BE LIABLE FOR ANY DAMAGES, INCLUDING CONSEQUENTIAL AND
19: * INCIDENTAL DAMAGES, SUFFERED BY YOU AS A RESULT OF USING, MODIFYING
20: * OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
21: *
22: * @author Asmus Freytag
23: *
24: * @version 001 Dec 25 1996
25: * @version 002 Jun 25 1997
26: * @version 003 Jul 25 1997
27: * @version 004 Aug 25 1997
28: *
29: * Unicode and the Unicode logo are trademarks of Unicode, Inc.,
30: * and are registered in some jurisdictions.
31: **/
32: /**
33: * The input character array or input byte array contained
34: * illegal sequences of bytes or characters
35: */
36: public class IllegalInputException extends java.lang.Exception {
37:
38: private static final long serialVersionUID = 1;
39:
40: public IllegalInputException() {
41: super (
42: "The input character array or input byte array contained illegal sequences of bytes or characters");
43: }
44:
45: public IllegalInputException(String s) {
46: super(s);
47: }
48: }
|