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

9 lines
153 B
C#

namespace DSInternals.Common.Exceptions
{
using System;
[Serializable]
public abstract class DirectoryException : Exception
{
}
}