##// END OF EJS Templates
Added class Trace<T> to manage channels for individual classes, if SomeClass...
Added class Trace<T> to manage channels for individual classes, if SomeClass uses Trace<SomeClass> it sould be marked with TraceSourceAttribute

File last commit:

r162:0526412bbb26 ref20160224
r212:a01d9df88d74 v2
Show More
ParserException.cs
17 lines | 606 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab.Automaton {
[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) { }
}
}