27 lines
551 B
C#
27 lines
551 B
C#
|
// 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);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|