Initial commit

This commit is contained in:
rudder
2026-08-12 14:03:44 +03:00
commit 9a7b4a57dc
304 changed files with 82311 additions and 0 deletions
@@ -0,0 +1,17 @@
using System;
namespace RudderSdk.Unity
{
internal sealed class UnityRequestException : Exception
{
public int StatusCode { get; }
public string ResponseBody { get; }
public UnityRequestException(int statusCode, string responseBody, string message)
: base(message)
{
StatusCode = statusCode;
ResponseBody = responseBody;
}
}
}