Init
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace QFSW.QC
|
||||
{
|
||||
/// <summary>
|
||||
/// Exception to be thrown by an IQcParser.
|
||||
/// </summary>
|
||||
public class ParserException : Exception
|
||||
{
|
||||
public ParserException(string message) : base(message) { }
|
||||
public ParserException(string message, Exception innerException) : base(message, innerException) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user