a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
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.

50 lines
1.7 KiB

  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) Under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for Additional information regarding copyright ownership.
  5. The ASF licenses this file to You Under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed Under the License is distributed on an "AS Is" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations Under the License.
  14. ==================================================================== */
  15. using System;
  16. using System.IO;
  17. namespace NPOI.HPSF
  18. {
  19. /**
  20. * The Character Encoding is not supported.
  21. *
  22. * @author Asmus Freytag
  23. * @since JDK1.1
  24. */
  25. public class UnsupportedEncodingException : IOException
  26. {
  27. //private static long serialVersionUID = -4274276298326136670L;
  28. /**
  29. * Constructs an UnsupportedEncodingException without a detail message.
  30. */
  31. public UnsupportedEncodingException()
  32. : base()
  33. {
  34. }
  35. /**
  36. * Constructs an UnsupportedEncodingException with a detail message.
  37. * @param s Describes the reason for the exception.
  38. */
  39. public UnsupportedEncodingException(String s)
  40. : base(s)
  41. {
  42. }
  43. }
  44. }