##// END OF EJS Templates
fixed JSONWriter handling Infinity, NaN and locale aware number formatting
fixed JSONWriter handling Infinity, NaN and locale aware number formatting

File last commit:

r55:c0bf853aa04f default
r142:2100965eb97f v2
Show More
ParserException.cs
17 lines | 604 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab.Parsing {
[Serializable]
public class ParserException : Exception {
public ParserException() { }
public ParserException(string message) : base(message) { }
public ParserException(string message, Exception inner) : base(message, inner) { }
protected ParserException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context)
: base(info, context) { }
}
}