27 lines
551 B
C#
Raw Normal View History

2025-07-14 21:54:09 +08:00
// JArgumentNullException
using System;
using Leguar.TotalJSON.Internal;
namespace Leguar.TotalJSON {
/// <summary>
/// Exception that is thrown if some JSON, JArray or JString parameter is null when it is not allowed to be null.
/// </summary>
public class JArgumentNullException : ArgumentNullException {
internal JArgumentNullException(string paramName, string message)
: base(paramName,message) {
}
public override string StackTrace {
get {
return InternalTools.getCleanedStackTrace(base.StackTrace);
}
}
}
}