You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EndOfInputException.java 1.5KB

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