DSInternals/Src/DSInternals.Common/Exceptions/DirectoryException.cs

12 lines
269 B
C#
Raw Normal View History

2015-12-26 22:44:43 +00:00
namespace DSInternals.Common.Exceptions
{
using System;
[Serializable]
public abstract class DirectoryException : Exception
{
2016-10-01 19:58:38 +00:00
public DirectoryException(Exception innerException = null) : base(null, innerException)
{
}
2015-12-26 22:44:43 +00:00
}
}