// JSONKeyNotFoundException using System.Collections.Generic; using Leguar.TotalJSON.Internal; namespace Leguar.TotalJSON { /// /// Exception that is thrown if given parameter key doesn't exist in JSON. /// public class JSONKeyNotFoundException : KeyNotFoundException { internal JSONKeyNotFoundException(string message) : base(message) { } public override string StackTrace { get { return InternalTools.getCleanedStackTrace(base.StackTrace); } } } }