rabidus-test/Assets/Plugins/QFSW/Quantum Console/Source/Scripts/Parsing/Exceptions/ParserInputException.cs

14 lines
413 B
C#
Raw Permalink Normal View History

2023-08-22 15:41:12 +03:00
using System;
namespace QFSW.QC
{
/// <summary>
/// Exception to be thrown by an IQcParser to indicate the input was invalid.
/// </summary>
public class ParserInputException : ParserException
{
public ParserInputException(string message) : base(message) { }
public ParserInputException(string message, Exception innerException) : base(message, innerException) { }
}
}