// JArrayIndexOutOfRangeException using System; using Leguar.TotalJSON.Internal; namespace Leguar.TotalJSON { /// /// Exception that is thrown if some JArray method parameter is out of range. /// public class JArrayIndexOutOfRangeException : ArgumentOutOfRangeException { internal JArrayIndexOutOfRangeException(string paramName, int actualValue, string message) : base(paramName,actualValue,message) { } public override string StackTrace { get { return InternalTools.getCleanedStackTrace(base.StackTrace); } } } }