DSInternals/Src/DSInternals.Common/Exceptions/DirectoryObjectNotFoundException.cs
2015-12-26 23:44:43 +01:00

24 lines
592 B
C#

namespace DSInternals.Common.Exceptions
{
using DSInternals.Common.Properties;
using System;
using System.Security.Principal;
[Serializable]
public sealed class DirectoryObjectNotFoundException : DirectoryObjectException
{
public DirectoryObjectNotFoundException(object objectIdentifier)
: base(objectIdentifier)
{
}
public override string Message
{
get
{
return String.Format(Resources.ObjectNotFoundMessageFormat,this.ObjectIdentifier);
}
}
}
}