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

9 lines
153 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
{
}
}