44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// 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) {}
|
||
|
}
|
||
|
}
|