18 lines
465 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |