mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 21:12:11 +00:00
6 lines
228 B
C#
6 lines
228 B
C#
|
|
namespace AIStudio.Tools.Security;
|
|||
|
|
|
|||
|
|
public sealed class PromptInjectionBlockedException(PromptInjectionScanResult result, string message) : Exception(message)
|
|||
|
|
{
|
|||
|
|
public PromptInjectionScanResult Result { get; } = result;
|
|||
|
|
}
|