16 lines
490 B
C#
16 lines
490 B
C#
namespace Clawdforge.Exceptions;
|
|
|
|
/// <summary>
|
|
/// Base type for every exception thrown by the clawdforge SDK. Catch this
|
|
/// to handle "anything from the SDK" without binding to a specific failure
|
|
/// shape.
|
|
/// </summary>
|
|
public class ForgeException : Exception
|
|
{
|
|
/// <inheritdoc />
|
|
public ForgeException(string message) : base(message) { }
|
|
|
|
/// <inheritdoc />
|
|
public ForgeException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
}
|