// JArgumentNullException using System; using Leguar.TotalJSON.Internal; namespace Leguar.TotalJSON { /// /// Exception that is thrown if some JSON, JArray or JString parameter is null when it is not allowed to be null. /// public class JArgumentNullException : ArgumentNullException { internal JArgumentNullException(string paramName, string message) : base(paramName,message) { } public override string StackTrace { get { return InternalTools.getCleanedStackTrace(base.StackTrace); } } } }