mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2024-12-12 09:27:17 +00:00
12 lines
269 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |