DSInternals/Src/DSInternals.Common/Exceptions/DirectoryObjectNotFoundException.cs

24 lines
592 B
C#
Raw Normal View History

2015-12-26 22:44:43 +00:00
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);
}
}
}
}