Singularity/Library/PackageCache/com.unity.2d.psdimporter@6.0.7/Editor/PSDPlugin/PsdFile/Exceptions.cs

44 lines
1.0 KiB
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
/////////////////////////////////////////////////////////////////////////////////
//
// 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) {}
}
}