Horizon – Rev 13

Subversion Repositories:
Rev:
using System;
using System.Drawing;

namespace Horizon.Database
{
    public class SnapshotCreateFailureEventArgs : SnapshotCreateEventArgs
    {
        #region Constructors, Destructors and Finalizers

        public SnapshotCreateFailureEventArgs(string name, string path, Color color, Exception exception)
        {
            Name = name;
            Path = path;
            Color = color;
            Exception = exception;
        }

        #endregion

        #region Public Enums, Properties and Fields

        public string Name { get; }
        public string Path { get; }
        public Color Color { get; }

        public Exception Exception { get; }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.