14 lines
358 B
C#
14 lines
358 B
C#
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) { }
|
|
}
|
|
}
|