SOMS/SolutionCleanupTool/Exceptions/SolutionCleanupException.cs
2025-12-31 14:25:09 +08:00

18 lines
465 B
C#

using System;
namespace SolutionCleanupTool.Exceptions
{
/// <summary>
/// Base exception class for solution cleanup operations
/// </summary>
public abstract class SolutionCleanupException : Exception
{
protected SolutionCleanupException(string message) : base(message)
{
}
protected SolutionCleanupException(string message, Exception innerException) : base(message, innerException)
{
}
}
}