using System; using System.Runtime.Serialization; namespace PaintDotNet { /// /// This is the base exception for all exceptions. /// public class PdnException : ApplicationException { public PdnException() { } public PdnException(string message) : base(message) { } public PdnException(string message, Exception innerException) : base(message, innerException) { } protected PdnException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }