12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /////////////////////////////////////////////////////////////////////////////////
- //
- // Photoshop PSD FileType Plugin for Paint.NET
- // http://psdplugin.codeplex.com/
- //
- // This software is perovided under the MIT License:
- // Copyright (c) 2006-2007 Frank Blumenberg
- // Copyright (c) 2010-2012 Tao Yue
- //
- // See LICENSE.txt for complete licensing and attribution information.
- //
- /////////////////////////////////////////////////////////////////////////////////
-
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using PDNWrapper;
- using System.Linq;
- using System.Text;
-
- namespace PhotoshopFile
- {
- [Serializable]
- internal class PsdInvalidException : Exception
- {
- public PsdInvalidException()
- {
- }
-
- public PsdInvalidException(string message)
- : base(message)
- {
- }
- }
-
- [Serializable]
- internal class RleException : Exception
- {
- public RleException() {}
-
- public RleException(string message) : base(message) {}
- }
- }
|