No Description
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.

Exceptions.cs 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Photoshop PSD FileType Plugin for Paint.NET
  4. // http://psdplugin.codeplex.com/
  5. //
  6. // This software is perovided under the MIT License:
  7. // Copyright (c) 2006-2007 Frank Blumenberg
  8. // Copyright (c) 2010-2012 Tao Yue
  9. //
  10. // See LICENSE.txt for complete licensing and attribution information.
  11. //
  12. /////////////////////////////////////////////////////////////////////////////////
  13. using System;
  14. using System.Collections.Generic;
  15. using System.Diagnostics;
  16. using PDNWrapper;
  17. using System.Linq;
  18. using System.Text;
  19. namespace PhotoshopFile
  20. {
  21. [Serializable]
  22. internal class PsdInvalidException : Exception
  23. {
  24. public PsdInvalidException()
  25. {
  26. }
  27. public PsdInvalidException(string message)
  28. : base(message)
  29. {
  30. }
  31. }
  32. [Serializable]
  33. internal class RleException : Exception
  34. {
  35. public RleException() {}
  36. public RleException(string message) : base(message) {}
  37. }
  38. }