ParserException.cs
17 lines
| 604 B
| text/x-csharp
|
CSharpLexer
cin
|
r55 | 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) { } | ||||
} | ||||
} | ||||