DSInternals/Src/DSInternals.Common/Exceptions/DirectoryException.cs
MichaelGrafnetter 1c8d6dbde8 Fixed #23
2016-10-01 21:58:38 +02:00

12 lines
269 B
C#

namespace DSInternals.Common.Exceptions
{
using System;
[Serializable]
public abstract class DirectoryException : Exception
{
public DirectoryException(Exception innerException = null) : base(null, innerException)
{
}
}
}