20 lines
448 B
C#
20 lines
448 B
C#
using System;
|
|
|
|
namespace StellaOps.Scanner.Sbomer.BuildXPlugin;
|
|
|
|
/// <summary>
|
|
/// Represents user-facing errors raised by the BuildX plug-in.
|
|
/// </summary>
|
|
public sealed class BuildxPluginException : Exception
|
|
{
|
|
public BuildxPluginException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public BuildxPluginException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|