Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

EndOfOutputException.java 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. *
  27. * Unicode and the Unicode logo are trademarks of Unicode, Inc.,
  28. * and are registered in some jurisdictions.
  29. **/
  30. /**
  31. * The input string or input byte array ended prematurely
  32. */
  33. public class EndOfOutputException
  34. extends java.lang.Exception
  35. {
  36. private static final long serialVersionUID = 1L;
  37. public EndOfOutputException(){
  38. super("The input string or input byte array ended prematurely");
  39. }
  40. public EndOfOutputException(String s) {
  41. super(s);
  42. }
  43. }