12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Runtime.Serialization;
- namespace PaintDotNet
- {
- /// <summary>
- /// This is the base exception for all exceptions.
- /// </summary>
- 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)
- {
- }
- }
- }
|