DSInternals/Src/DSInternals.Common/Exceptions/DirectoryObjectException.cs
MichaelGrafnetter 1c8d6dbde8 Fixed #23
2016-10-01 21:58:38 +02:00

22 lines
526 B
C#

using DSInternals.Common.Data;
using System;
using System.Security.Principal;
namespace DSInternals.Common.Exceptions
{
[Serializable]
public abstract class DirectoryObjectException : DirectoryException
{
public object ObjectIdentifier
{
get;
private set;
}
public DirectoryObjectException(object objectIdentifier, Exception innerException = null) : base(innerException)
{
this.ObjectIdentifier = objectIdentifier;
}
}
}